diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi
index 395b69c37137..270da8ebb41b 100644
--- a/setup/azurecmdfiles.wxi
+++ b/setup/azurecmdfiles.wxi
@@ -950,12 +950,6 @@
-
-
-
-
-
-
@@ -968,6 +962,9 @@
+
+
+
@@ -1033,9 +1030,6 @@
-
-
-
@@ -1051,6 +1045,9 @@
+
+
+
@@ -5318,12 +5315,11 @@
-
-
+
@@ -5345,12 +5341,12 @@
-
+
diff --git a/src/Common/Commands.Common.Authentication/Factories/ClientFactory.cs b/src/Common/Commands.Common.Authentication/Factories/ClientFactory.cs
index 7ac12cce7418..56970c9e9506 100644
--- a/src/Common/Commands.Common.Authentication/Factories/ClientFactory.cs
+++ b/src/Common/Commands.Common.Authentication/Factories/ClientFactory.cs
@@ -119,11 +119,19 @@ public virtual TClient CreateClient(AzureSMProfile profile, AzureEnviro
}
///
+ /// Creates the client.
///
- ///
- ///
- ///
+ /// The type of the client.
+ /// The profile.
+ /// The subscription.
+ /// The endpoint.
///
+ ///
+ ///
+ /// accountName
+ /// or
+ /// environment
+ ///
public virtual TClient CreateClient(AzureSMProfile profile, AzureSubscription subscription, AzureEnvironment.Endpoint endpoint) where TClient : ServiceClient
{
if (subscription == null)
@@ -287,7 +295,7 @@ public void AddUserAgent(string productName)
public HashSet UserAgents { get; set; }
- private DelegatingHandler[] GetCustomHandlers()
+ public DelegatingHandler[] GetCustomHandlers()
{
List newHandlers = new List();
var enumerator = _handlers.GetEnumerator();
diff --git a/src/Common/Commands.Common.Authentication/Interfaces/IClientFactory.cs b/src/Common/Commands.Common.Authentication/Interfaces/IClientFactory.cs
index eda7b9073431..27434b361877 100644
--- a/src/Common/Commands.Common.Authentication/Interfaces/IClientFactory.cs
+++ b/src/Common/Commands.Common.Authentication/Interfaces/IClientFactory.cs
@@ -54,6 +54,12 @@ public interface IClientFactory
/// Product name.
void AddUserAgent(string productName);
+ ///
+ /// Gets the custom handlers.
+ ///
+ /// An array of custom handlers
+ DelegatingHandler[] GetCustomHandlers();
+
///
/// Adds user agent to UserAgents collection.
///
diff --git a/src/Common/Commands.ScenarioTests.Common/Mocks/MockClientFactory.cs b/src/Common/Commands.ScenarioTests.Common/Mocks/MockClientFactory.cs
index ff7d51d781db..8e065a621af6 100644
--- a/src/Common/Commands.ScenarioTests.Common/Mocks/MockClientFactory.cs
+++ b/src/Common/Commands.ScenarioTests.Common/Mocks/MockClientFactory.cs
@@ -176,6 +176,12 @@ public void RemoveHandler(Type handlerType)
// Do nothing
}
+ public DelegatingHandler[] GetCustomHandlers()
+ {
+ // the equivalent of doing nothing
+ return new DelegatingHandler[0];
+ }
+
public void AddUserAgent(string productName, string productVersion)
{
this.UserAgents.Add(new ProductInfoHeaderValue(productName, productVersion));
diff --git a/src/ResourceManager/AzureStackAdmin/Commands.AzureStackAdmin.Test/App.config b/src/ResourceManager/AzureStackAdmin/Commands.AzureStackAdmin.Test/App.config
index c0054f9a1414..69a918eaa809 100644
--- a/src/ResourceManager/AzureStackAdmin/Commands.AzureStackAdmin.Test/App.config
+++ b/src/ResourceManager/AzureStackAdmin/Commands.AzureStackAdmin.Test/App.config
@@ -1,4 +1,4 @@
-
+
@@ -11,4 +11,4 @@
-
+
\ No newline at end of file
diff --git a/src/ResourceManager/AzureStackAdmin/Commands.AzureStackAdmin.Test/Commands.AzureStackAdmin.Test.csproj b/src/ResourceManager/AzureStackAdmin/Commands.AzureStackAdmin.Test/Commands.AzureStackAdmin.Test.csproj
index 0f058890dcc2..7f0b67f3b5b6 100644
--- a/src/ResourceManager/AzureStackAdmin/Commands.AzureStackAdmin.Test/Commands.AzureStackAdmin.Test.csproj
+++ b/src/ResourceManager/AzureStackAdmin/Commands.AzureStackAdmin.Test/Commands.AzureStackAdmin.Test.csproj
@@ -172,9 +172,7 @@
-
- Designer
-
+
PreserveNewest
diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs
index 486a52f56cea..fed88b9ad56d 100644
--- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs
+++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/EnvironmentSetupHelper.cs
@@ -169,6 +169,8 @@ private void SetupAzureEnvironmentFromEnvironmentVariables(AzureModule mode)
environment.Endpoints[AzureEnvironment.Endpoint.ServiceManagement] = currentEnvironment.BaseUri.AbsoluteUri;
environment.Endpoints[AzureEnvironment.Endpoint.ResourceManager] = currentEnvironment.Endpoints.ResourceManagementUri.AbsoluteUri;
environment.Endpoints[AzureEnvironment.Endpoint.Graph] = currentEnvironment.Endpoints.GraphUri.AbsoluteUri;
+ environment.Endpoints[AzureEnvironment.Endpoint.AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix] = currentEnvironment.Endpoints.DataLakeAnalyticsJobAndCatalogServiceUri.OriginalString.Replace("https://",""); // because it is just a sufix
+ environment.Endpoints[AzureEnvironment.Endpoint.AzureDataLakeStoreFileSystemEndpointSuffix] = currentEnvironment.Endpoints.DataLakeStoreServiceUri.OriginalString.Replace("https://", ""); // because it is just a sufix
if (!ProfileClient.Profile.Environments.ContainsKey(testEnvironmentName))
{
diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs
index 0595d8bc7c7d..8052022f2d50 100644
--- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs
+++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Mocks/MockClientFactory.cs
@@ -176,6 +176,12 @@ public void RemoveHandler(Type handlerType)
// Do nothing
}
+ public DelegatingHandler[] GetCustomHandlers()
+ {
+ // the equivalent of doing nothing
+ return new DelegatingHandler[0];
+ }
+
public void AddUserAgent(string productName, string productVersion)
{
this.UniqueUserAgents.Add(new ProductInfoHeaderValue(productName, productVersion));
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 0fe518a912f1..077bf5570a42 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/Commands.DataLakeAnalytics.Test.csproj
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/Commands.DataLakeAnalytics.Test.csproj
@@ -54,21 +54,23 @@
..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll
-
- False
- ..\..\..\packages\Microsoft.Azure.Management.DataLake.Analytics.0.9.4-preview\lib\net40\Microsoft.Azure.Management.DataLake.Analytics.dll
+
+ ..\..\..\packages\Microsoft.Azure.Gallery.2.6.2-preview\lib\net40\Microsoft.Azure.Gallery.dll
+ True
-
- False
- ..\..\..\packages\Microsoft.Azure.Management.DataLake.AnalyticsCatalog.0.9.3-preview\lib\net40\Microsoft.Azure.Management.DataLake.AnalyticsCatalog.dll
+
+ ..\..\..\packages\Microsoft.Azure.Management.Authorization.2.0.0\lib\net40\Microsoft.Azure.Management.Authorization.dll
+ True
-
+
False
- ..\..\..\packages\Microsoft.Azure.Management.DataLake.AnalyticsJob.0.9.6-preview\lib\net40\Microsoft.Azure.Management.DataLake.AnalyticsJob.dll
+ ..\..\..\packages\Microsoft.Azure.Management.DataLake.Analytics.0.10.1-preview\lib\net45\Microsoft.Azure.Management.DataLake.Analytics.dll
+ True
-
+
False
- ..\..\..\packages\Microsoft.Azure.Management.DataLake.Store.0.9.1-preview\lib\net40\Microsoft.Azure.Management.DataLake.Store.dll
+ ..\..\..\packages\Microsoft.Azure.Management.DataLake.Store.0.10.0-preview\lib\net45\Microsoft.Azure.Management.DataLake.Store.dll
+ True
False
@@ -82,9 +84,10 @@
False
..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5896.19355-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll
-
+
False
- ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.0.5896.19355-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll
+ ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.6.0-preview\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll
+ True
False
@@ -98,10 +101,20 @@
..\..\..\packages\Microsoft.Rest.ClientRuntime.2.0.1\lib\net45\Microsoft.Rest.ClientRuntime.dll
True
+
+ False
+ ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.3.0.2\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll
+ True
+
..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.2.0.1-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll
True
+
+ False
+ ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.TestFramework.1.2.1-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.dll
+ True
+
False
..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll
@@ -142,6 +155,7 @@
..\..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll
+
@@ -188,6 +202,9 @@
Designer
+
+ PreserveNewest
+
PreserveNewest
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTests.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTests.cs
index 5f8d4bdb2ba6..933dcd2a8f11 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTests.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTests.cs
@@ -24,11 +24,9 @@ public class AdlaTests : AdlaTestsBase
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestAdlaAccount()
{
- RunPowerShellTest(true,
+ AdlaTestsBase.NewInstance.RunPsTest(true,
string.Format(
- "Test-DataLakeAnalyticsAccount -resourceGroupName {0} -accountName {1} -dataLakeAccountName {2} -secondDataLakeAccountName {3} -blobAccountName {4} -blobAccountKey {5} -location '{6}'",
- this.resourceGroupName, this.dataLakeAnalyticsAccountName, this.dataLakeStoreAccountName,
- this.secondDataLakeStoreAccountName, this.azureBlobStoreName, this.azureBlobStoreAccessKey,
+ "Test-DataLakeAnalyticsAccount -blobAccountKey -location '{0}'",
AdlaTestsBase.resourceGroupLocation));
}
@@ -36,12 +34,9 @@ public void TestAdlaAccount()
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestAdlaCatalog()
{
- RunPowerShellTest(false,
+ AdlaTestsBase.NewInstance.RunPsTest(false,
string.Format(
- "Test-DataLakeAnalyticsCatalog -resourceGroupName {0} -accountName {1} -dataLakeAccountName {2} -databaseName {3} -tableName {4} -tvfName {5} -viewName {6} -procName {7} -secretName {8} -secretPwd {9} -credentialName {10} -location '{11}'",
- this.resourceGroupName, this.dataLakeAnalyticsAccountName, this.dataLakeStoreAccountName,
- this.dbName, this.tableName, this.tvfName, this.viewName, this.procName, this.secretName,
- this.secretPwd, this.credName,
+ "Test-DataLakeAnalyticsCatalog -location '{0}'",
AdlaTestsBase.resourceGroupLocation));
}
@@ -49,10 +44,9 @@ public void TestAdlaCatalog()
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestAdlaJob()
{
- RunPowerShellTest(false,
+ AdlaTestsBase.NewInstance.RunPsTest(false,
string.Format(
- "Test-DataLakeAnalyticsJob -resourceGroupName {0} -accountName {1} -dataLakeAccountName {2} -location '{3}'",
- this.resourceGroupName, this.dataLakeAnalyticsAccountName, this.dataLakeStoreAccountName,
+ "Test-DataLakeAnalyticsJob -location '{0}'",
AdlaTestsBase.resourceGroupLocation));
}
@@ -60,10 +54,9 @@ public void TestAdlaJob()
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestNegativeAdlaAccount()
{
- RunPowerShellTest(false,
+ AdlaTestsBase.NewInstance.RunPsTest(false,
string.Format(
- "Test-NegativeDataLakeAnalyticsAccount -resourceGroupName {0} -accountName {1} -dataLakeAccountName {2} -location '{3}'",
- this.resourceGroupName, this.dataLakeAnalyticsAccountName, this.dataLakeStoreAccountName,
+ "Test-NegativeDataLakeAnalyticsAccount -location '{0}'",
AdlaTestsBase.resourceGroupLocation));
}
@@ -71,10 +64,9 @@ public void TestNegativeAdlaAccount()
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestNegativeAdlaJob()
{
- RunPowerShellTest(false,
+ AdlaTestsBase.NewInstance.RunPsTest(false,
string.Format(
- "Test-NegativeDataLakeAnalyticsJob -resourceGroupName {0} -accountName {1} -dataLakeAccountName {2} -location '{3}'",
- this.resourceGroupName, this.dataLakeAnalyticsAccountName, this.dataLakeStoreAccountName,
+ "Test-NegativeDataLakeAnalyticsJob -location '{0}'",
AdlaTestsBase.resourceGroupLocation));
}
}
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTests.ps1 b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTests.ps1
index e7e97826c38e..61826b26675c 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTests.ps1
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTests.ps1
@@ -6,123 +6,137 @@ function Test-DataLakeAnalyticsAccount
{
param
(
- $resourceGroupName,
- $accountName,
- $dataLakeAccountName,
- $secondDataLakeAccountName,
+ $resourceGroupName = (Get-ResourceGroupName),
+ $accountName = (Get-DataLakeAnalyticsAccountName),
+ $dataLakeAccountName = (Get-DataLakeStoreAccountName),
+ $secondDataLakeAccountName = (Get-DataLakeStoreAccountName),
$blobAccountName,
$blobAccountKey,
- $location = "East US 2"
+ $location = "West US"
)
+
+ try
+ {
+ # Creating Account and initial setup
+ New-AzureRmResourceGroup -Name $resourceGroupName -Location $location
+ New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $dataLakeAccountName -Location $location
+ New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $secondDataLakeAccountName -Location $location
+ $accountCreated = New-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location -DefaultDataLakeStore $dataLakeAccountName
- # Creating Account
- $accountCreated = New-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location -DefaultDataLakeStore $dataLakeAccountName
-
- Assert-AreEqual $accountName $accountCreated.Name
- Assert-AreEqual $location $accountCreated.Location
- Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountCreated.Type
- Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
-
- # In loop to check if account exists
- for ($i = 0; $i -le 60; $i++)
- {
- [array]$accountGet = Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName
- if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
- {
- Assert-AreEqual $accountName $accountGet[0].Name
- Assert-AreEqual $location $accountGet[0].Location
- Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountGet[0].Type
- Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
- break
- }
-
- Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
- [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
- Assert-False {$i -eq 60} "dataLakeAnalytics account is not in succeeded state even after 30 min."
- }
-
- # Updating Account
- $tagsToUpdate = @{"Name" = "TestTag"; "Value" = "TestUpdate"}
- $accountUpdated = Set-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Tags $tagsToUpdate
+ Assert-AreEqual $accountName $accountCreated.Name
+ Assert-AreEqual $location $accountCreated.Location
+ Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountCreated.Type
+ Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
+
+ # In loop to check if account exists
+ for ($i = 0; $i -le 60; $i++)
+ {
+ [array]$accountGet = Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName
+ if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
+ {
+ Assert-AreEqual $accountName $accountGet[0].Name
+ Assert-AreEqual $location $accountGet[0].Location
+ Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountGet[0].Type
+ Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
+ break
+ }
+
+ Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
+ [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(30000)
+ Assert-False {$i -eq 60} "dataLakeAnalytics account is not in succeeded state even after 30 min."
+ }
+
+ # Updating Account
+ $tagsToUpdate = @{"Name" = "TestTag"; "Value" = "TestUpdate"}
+ $accountUpdated = Set-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Tags $tagsToUpdate
- Assert-AreEqual $accountName $accountUpdated.Name
- Assert-AreEqual $location $accountUpdated.Location
- Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountUpdated.Type
- Assert-True {$accountUpdated.Id -like "*$resourceGroupName*"}
+ Assert-AreEqual $accountName $accountUpdated.Name
+ Assert-AreEqual $location $accountUpdated.Location
+ Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountUpdated.Type
+ Assert-True {$accountUpdated.Id -like "*$resourceGroupName*"}
- Assert-NotNull $accountUpdated.Tags "Tags do not exists"
- Assert-NotNull $accountUpdated.Tags["TestTag"] "The updated tag 'TestTag' does not exist"
+ Assert-NotNull $accountUpdated.Tags "Tags do not exists"
+ Assert-NotNull $accountUpdated.Tags["TestTag"] "The updated tag 'TestTag' does not exist"
- # List all accounts in resource group
- [array]$accountsInResourceGroup = Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName
- Assert-True {$accountsInResourceGroup.Count -ge 1}
+ # List all accounts in resource group
+ [array]$accountsInResourceGroup = Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName
+ Assert-True {$accountsInResourceGroup.Count -ge 1}
- $found = 0
- for ($i = 0; $i -lt $accountsInResourceGroup.Count; $i++)
- {
- if ($accountsInResourceGroup[$i].Name -eq $accountName)
- {
- $found = 1
- Assert-AreEqual $location $accountsInResourceGroup[$i].Location
- Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountsInResourceGroup[$i].Type
- Assert-True {$accountsInResourceGroup[$i].Id -like "*$resourceGroupName*"}
- break
- }
- }
- Assert-True {$found -eq 1} "Account created earlier is not found when listing all in resource group: $resourceGroupName."
-
- # List all dataLakeAnalytics accounts in subscription
- [array]$accountsInSubscription = Get-AzureRmDataLakeAnalyticsAccount
- Assert-True {$accountsInSubscription.Count -ge 1}
- Assert-True {$accountsInSubscription.Count -ge $accountsInResourceGroup.Count}
+ $found = 0
+ for ($i = 0; $i -lt $accountsInResourceGroup.Count; $i++)
+ {
+ if ($accountsInResourceGroup[$i].Name -eq $accountName)
+ {
+ $found = 1
+ Assert-AreEqual $location $accountsInResourceGroup[$i].Location
+ Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountsInResourceGroup[$i].Type
+ Assert-True {$accountsInResourceGroup[$i].Id -like "*$resourceGroupName*"}
+ break
+ }
+ }
+ Assert-True {$found -eq 1} "Account created earlier is not found when listing all in resource group: $resourceGroupName."
+
+ # List all dataLakeAnalytics accounts in subscription
+ [array]$accountsInSubscription = Get-AzureRmDataLakeAnalyticsAccount
+ Assert-True {$accountsInSubscription.Count -ge 1}
+ Assert-True {$accountsInSubscription.Count -ge $accountsInResourceGroup.Count}
- $found = 0
- for ($i = 0; $i -lt $accountsInSubscription.Count; $i++)
- {
- if ($accountsInSubscription[$i].Name -eq $accountName)
- {
- $found = 1
- Assert-AreEqual $location $accountsInSubscription[$i].Location
- Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountsInSubscription[$i].Type
- Assert-True {$accountsInSubscription[$i].Id -like "*$resourceGroupName*"}
- break
- }
- }
- Assert-True {$found -eq 1} "Account created earlier is not found when listing all in subscription."
-
- # add a data lake store account to the analytics account
- Add-AzureRmDataLakeAnalyticsDataSource -Account $accountName -DataLakeStore $secondDataLakeAccountName
-
- # get the account and ensure that it contains two data lake stores
- $testStoreAdd = Get-AzureRmDataLakeAnalyticsAccount -Name $accountName
- Assert-AreEqual 2 $testStoreAdd.Properties.DataLakeStoreAccounts.Count
-
- # remove the Data lake storage account
- Assert-True {Remove-AzureRmDataLakeAnalyticsDataSource -Account $accountName -DataLakeStore $secondDataLakeAccountName -Force -PassThru} "Remove Data Lake Store account failed."
-
- # get the account and ensure that it contains one data lake store
- $testStoreAdd = Get-AzureRmDataLakeAnalyticsAccount -Name $accountName
- Assert-AreEqual 1 $testStoreAdd.Properties.DataLakeStoreAccounts.Count
-
- # add a blob account to the analytics account
- Add-AzureRmDataLakeAnalyticsDataSource -Account $accountName -Blob $blobAccountName -AccessKey $blobAccountKey
-
- # get the account and ensure that it contains one blob account
- $testStoreAdd = Get-AzureRmDataLakeAnalyticsAccount -Name $accountName
- Assert-AreEqual 1 $testStoreAdd.Properties.StorageAccounts.Count
-
- # remove the blob storage account
- Assert-True {Remove-AzureRmDataLakeAnalyticsDataSource -Account $accountName -Blob $blobAccountName -Force -PassThru} "Remove blob Storage account failed."
-
- # get the account and ensure that it contains no azure storage accounts
- $testStoreAdd = Get-AzureRmDataLakeAnalyticsAccount -Name $accountName
- Assert-True {$testStoreAdd.Properties.StorageAccounts -eq $null -or $testStoreAdd.Properties.StorageAccounts.Count -eq 0} "Remove blob storage reported success but failed to remove the account."
-
- # Delete dataLakeAnalytics account
- Assert-True {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
-
- # Verify that it is gone by trying to get it again
- Assert-Throws {Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ $found = 0
+ for ($i = 0; $i -lt $accountsInSubscription.Count; $i++)
+ {
+ if ($accountsInSubscription[$i].Name -eq $accountName)
+ {
+ $found = 1
+ Assert-AreEqual $location $accountsInSubscription[$i].Location
+ Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountsInSubscription[$i].Type
+ Assert-True {$accountsInSubscription[$i].Id -like "*$resourceGroupName*"}
+ break
+ }
+ }
+ Assert-True {$found -eq 1} "Account created earlier is not found when listing all in subscription."
+
+ # add a data lake store account to the analytics account
+ Add-AzureRmDataLakeAnalyticsDataSource -Account $accountName -DataLakeStore $secondDataLakeAccountName
+
+ # get the account and ensure that it contains two data lake stores
+ $testStoreAdd = Get-AzureRmDataLakeAnalyticsAccount -Name $accountName
+ Assert-AreEqual 2 $testStoreAdd.Properties.DataLakeStoreAccounts.Count
+
+ # remove the Data lake storage account
+ Assert-True {Remove-AzureRmDataLakeAnalyticsDataSource -Account $accountName -DataLakeStore $secondDataLakeAccountName -Force -PassThru} "Remove Data Lake Store account failed."
+
+ # get the account and ensure that it contains one data lake store
+ $testStoreAdd = Get-AzureRmDataLakeAnalyticsAccount -Name $accountName
+ Assert-AreEqual 1 $testStoreAdd.Properties.DataLakeStoreAccounts.Count
+
+ # add a blob account to the analytics account
+ Add-AzureRmDataLakeAnalyticsDataSource -Account $accountName -Blob $blobAccountName -AccessKey $blobAccountKey
+
+ # get the account and ensure that it contains one blob account
+ $testStoreAdd = Get-AzureRmDataLakeAnalyticsAccount -Name $accountName
+ Assert-AreEqual 1 $testStoreAdd.Properties.StorageAccounts.Count
+
+ # remove the blob storage account
+ Assert-True {Remove-AzureRmDataLakeAnalyticsDataSource -Account $accountName -Blob $blobAccountName -Force -PassThru} "Remove blob Storage account failed."
+
+ # get the account and ensure that it contains no azure storage accounts
+ $testStoreAdd = Get-AzureRmDataLakeAnalyticsAccount -Name $accountName
+ Assert-True {$testStoreAdd.Properties.StorageAccounts -eq $null -or $testStoreAdd.Properties.StorageAccounts.Count -eq 0} "Remove blob storage reported success but failed to remove the account."
+
+ # Delete dataLakeAnalytics account
+ Assert-True {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
+
+ # Verify that it is gone by trying to get it again
+ Assert-Throws {Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ }
+ finally
+ {
+ # cleanup the resource group that was used in case it still exists. This is a best effort task, we ignore failures here.
+ Invoke-HandledCmdlet -Command {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ Invoke-HandledCmdlet -Command {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $dataLakeAccountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ Invoke-HandledCmdlet -Command {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $secondDataLakeAccountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ Invoke-HandledCmdlet -Command {Remove-AzureRmResourceGroup -Name $resourceGroupName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ }
}
@@ -134,70 +148,81 @@ function Test-DataLakeAnalyticsJob
{
param
(
- $resourceGroupName,
- $accountName,
- $dataLakeAccountName,
+ $resourceGroupName = (Get-ResourceGroupName),
+ $accountName = (Get-DataLakeAnalyticsAccountName),
+ $dataLakeAccountName = (Get-DataLakeStoreAccountName),
$location = "West US"
)
-
- # Creating Account
- $accountCreated = New-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location -DefaultDataLakeStore $dataLakeAccountName
+ try
+ {
+ # Creating Account and initial setup
+ New-AzureRmResourceGroup -Name $resourceGroupName -Location $location
+ New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $dataLakeAccountName -Location $location
+ $accountCreated = New-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location -DefaultDataLakeStore $dataLakeAccountName
- Assert-AreEqual $accountName $accountCreated.Name
- Assert-AreEqual $location $accountCreated.Location
- Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountCreated.Type
- Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
-
- # In loop to check if account exists
- for ($i = 0; $i -le 60; $i++)
- {
- [array]$accountGet = Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName
- if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
- {
- Assert-AreEqual $accountName $accountGet[0].Name
- Assert-AreEqual $location $accountGet[0].Location
- Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountGet[0].Type
- Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
- break
- }
-
- Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
- [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
- Assert-False {$i -eq 60} "dataLakeAnalytics accounts not in succeeded state even after 30 min."
- }
-
- # For now, all Job related tests just ensure that they have a valid response and do not throw.
- # Wait for two minutes prior to attempting to submit the job in the freshly created account.
- [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(120000)
- # submit a job
- $jobInfo = Submit-AzureRmDataLakeAnalyticsJob -ResourceGroupName $resourceGroupName -AccountName $accountName -Name "TestJob" -Script "DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;"
- Assert-NotNull {$jobInfo}
-
- # "cancel" the fake job right away
- Stop-AzureRmDataLakeAnalyticsJob -ResourceGroupName $resourceGroupName -AccountName $accountName -JobId $jobInfo.JobId -Force
- $cancelledJob = Get-AzureRmDataLakeAnalyticsJob -ResourceGroupName $resourceGroupName -AccountName $accountName -JobId $jobInfo.JobId
-
- # Get the specific job, and the list of all jobs in the resource group
- Assert-NotNull {$cancelledJob}
+ Assert-AreEqual $accountName $accountCreated.Name
+ Assert-AreEqual $location $accountCreated.Location
+ Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountCreated.Type
+ Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
+
+ # In loop to check if account exists
+ for ($i = 0; $i -le 60; $i++)
+ {
+ [array]$accountGet = Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName
+ if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
+ {
+ Assert-AreEqual $accountName $accountGet[0].Name
+ Assert-AreEqual $location $accountGet[0].Location
+ Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountGet[0].Type
+ Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
+ break
+ }
+
+ Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
+ [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(30000)
+ Assert-False {$i -eq 60} "dataLakeAnalytics accounts not in succeeded state even after 30 min."
+ }
+
+ # For now, all Job related tests just ensure that they have a valid response and do not throw.
+ # Wait for two minutes and 30 seconds prior to attempting to submit the job in the freshly created account.
+ [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(150000)
+ # submit a job
+ $jobInfo = Submit-AzureRmDataLakeAnalyticsJob -AccountName $accountName -Name "TestJob" -Script "DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;"
+ Assert-NotNull {$jobInfo}
+
+ # "cancel" the fake job right away
+ Stop-AzureRmDataLakeAnalyticsJob -AccountName $accountName -JobId $jobInfo.JobId -Force
+ $cancelledJob = Get-AzureRmDataLakeAnalyticsJob -AccountName $accountName -JobId $jobInfo.JobId
+
+ # Get the specific job, and the list of all jobs in the resource group
+ Assert-NotNull {$cancelledJob}
- # Verify the job was actually cancelled.
- Assert-True {$cancelledJob.Result -like "*Cancel*"}
+ # Verify the job was actually cancelled.
+ Assert-True {$cancelledJob.Result -like "*Cancel*"}
- Assert-NotNull {Get-AzureRmDataLakeAnalyticsJob -ResourceGroupName $resourceGroupName -AccountName $accountName}
+ Assert-NotNull {Get-AzureRmDataLakeAnalyticsJob -AccountName $accountName}
- $jobsWithDateOffset = Get-AzureRmDataLakeAnalyticsJob -ResourceGroupName $resourceGroupName -AccountName $accountName -SubmittedAfter $(([DateTime]::Now).AddMinutes(-5))
+ $jobsWithDateOffset = Get-AzureRmDataLakeAnalyticsJob -AccountName $accountName -SubmittedAfter $(([DateTime]::Now).AddMinutes(-5))
- Assert-True {$jobsWithDateOffset.Count -gt 0} "Failed to retrieve jobs submitted after five miuntes ago"
+ Assert-True {$jobsWithDateOffset.Count -gt 0} "Failed to retrieve jobs submitted after five miuntes ago"
- $jobsWithDateOffset = Get-AzureRmDataLakeAnalyticsJob -ResourceGroupName $resourceGroupName -AccountName $accountName -SubmittedBefore $(([DateTime]::Now).AddMinutes(0))
+ $jobsWithDateOffset = Get-AzureRmDataLakeAnalyticsJob -AccountName $accountName -SubmittedBefore $(([DateTime]::Now).AddMinutes(0))
- Assert-True {$jobsWithDateOffset.Count -gt 0} "Failed to retrieve jobs submitted before right now"
+ Assert-True {$jobsWithDateOffset.Count -gt 0} "Failed to retrieve jobs submitted before right now"
- # Delete the DataLakeAnalytics account
- Assert-True {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
+ # Delete the DataLakeAnalytics account
+ Assert-True {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
- # Verify that it is gone by trying to get it again
- Assert-Throws {Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ # Verify that it is gone by trying to get it again
+ Assert-Throws {Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ }
+ finally
+ {
+ # cleanup the resource group that was used in case it still exists. This is a best effort task, we ignore failures here.
+ Invoke-HandledCmdlet -Command {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ Invoke-HandledCmdlet -Command {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $dataLakeAccountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ Invoke-HandledCmdlet -Command {Remove-AzureRmResourceGroup -Name $resourceGroupName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ }
}
@@ -209,57 +234,69 @@ function Test-NegativeDataLakeAnalyticsAccount
{
param
(
- $resourceGroupName,
- $accountName,
+ $resourceGroupName = (Get-ResourceGroupName),
+ $accountName = (Get-DataLakeAnalyticsAccountName),
$location = "West US",
- $dataLakeAccountName,
+ $dataLakeAccountName = (Get-DataLakeStoreAccountName),
$fakeaccountName = "psfakedataLakeAnalyticsaccounttest"
)
- # Creating Account
- $accountCreated = New-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location -DefaultDataLakeStore $dataLakeAccountName
+ try
+ {
+ # Creating Account and initial setup
+ New-AzureRmResourceGroup -Name $resourceGroupName -Location $location
+ New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $dataLakeAccountName -Location $location
+ $accountCreated = New-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location -DefaultDataLakeStore $dataLakeAccountName
- Assert-AreEqual $accountName $accountCreated.Name
- Assert-AreEqual $location $accountCreated.Location
- Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountCreated.Type
- Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
-
- # In loop to check if account exists
- for ($i = 0; $i -le 60; $i++)
- {
- [array]$accountGet = Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName
- if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
- {
- Assert-AreEqual $accountName $accountGet[0].Name
- Assert-AreEqual $location $accountGet[0].Location
- Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountGet[0].Type
- Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
- break
- }
-
- Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
- [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
- Assert-False {$i -eq 60} "dataLakeAnalytics accounts not in succeeded state even after 30 min."
- }
-
- # attempt to recreate the already created account
- Assert-Throws {New-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location -DefaultDataLakeStore $dataLakeAccountName}
-
- # attempt to update a non-existent account
- $tagsToUpdate = @{"Name" = "TestTag"; "Value" = "TestUpdate"}
- Assert-Throws {Set-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $fakeaccountName -Tags $tagsToUpdate}
-
- # attempt to get a non-existent account
- Assert-Throws {Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $fakeaccountName}
-
- # Delete dataLakeAnalytics account
- Assert-True {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
-
- # Verify that trying to delete a non existent account now throws
- Assert-Throws {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru}
-
- # Verify that it is gone by trying to get it again
- Assert-Throws {Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ Assert-AreEqual $accountName $accountCreated.Name
+ Assert-AreEqual $location $accountCreated.Location
+ Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountCreated.Type
+ Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
+
+ # In loop to check if account exists
+ for ($i = 0; $i -le 60; $i++)
+ {
+ [array]$accountGet = Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName
+ if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
+ {
+ Assert-AreEqual $accountName $accountGet[0].Name
+ Assert-AreEqual $location $accountGet[0].Location
+ Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountGet[0].Type
+ Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
+ break
+ }
+
+ Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
+ [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(30000)
+ Assert-False {$i -eq 60} "dataLakeAnalytics accounts not in succeeded state even after 30 min."
+ }
+
+ # attempt to recreate the already created account
+ Assert-Throws {New-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location -DefaultDataLakeStore $dataLakeAccountName}
+
+ # attempt to update a non-existent account
+ $tagsToUpdate = @{"Name" = "TestTag"; "Value" = "TestUpdate"}
+ Assert-Throws {Set-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $fakeaccountName -Tags $tagsToUpdate}
+
+ # attempt to get a non-existent account
+ Assert-Throws {Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $fakeaccountName}
+
+ # Delete dataLakeAnalytics account
+ Assert-True {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
+
+ # Verify that trying to delete a non existent account now throws
+ Assert-Throws {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru}
+
+ # Verify that it is gone by trying to get it again
+ Assert-Throws {Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ }
+ finally
+ {
+ # cleanup the resource group that was used in case it still exists. This is a best effort task, we ignore failures here.
+ Invoke-HandledCmdlet -Command {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ Invoke-HandledCmdlet -Command {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $dataLakeAccountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ Invoke-HandledCmdlet -Command {Remove-AzureRmResourceGroup -Name $resourceGroupName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ }
}
@@ -271,56 +308,68 @@ function Test-NegativeDataLakeAnalyticsJob
{
param
(
- $resourceGroupName,
- $accountName,
- $dataLakeAccountName,
+ $resourceGroupName = (Get-ResourceGroupName),
+ $accountName = (Get-DataLakeAnalyticsAccountName),
+ $dataLakeAccountName = (Get-DataLakeStoreAccountName),
$location = "West US"
)
- # Creating Account
- $accountCreated = New-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location -DefaultDataLakeStore $dataLakeAccountName
+ try
+ {
+ # Creating Account and initial setup
+ New-AzureRmResourceGroup -Name $resourceGroupName -Location $location
+ New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $dataLakeAccountName -Location $location
+ $accountCreated = New-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location -DefaultDataLakeStore $dataLakeAccountName
- Assert-AreEqual $accountName $accountCreated.Name
- Assert-AreEqual $location $accountCreated.Location
- Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountCreated.Type
- Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
-
- # In loop to check if account exists
- for ($i = 0; $i -le 60; $i++)
- {
- [array]$accountGet = Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName
- if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
- {
- Assert-AreEqual $accountName $accountGet[0].Name
- Assert-AreEqual $location $accountGet[0].Location
- Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountGet[0].Type
- Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
- break
- }
-
- Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
- [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
- Assert-False {$i -eq 60} "dataLakeAnalytics accounts not in succeeded state even after 30 min."
- }
-
- # attempt to "cancel" a non-existent job
- Assert-Throws {Stop-AzureRmDataLakeAnalyticsJob -ResourceGroupName $resourceGroupName -AccountName $accountName -JobIdentity [Guid]::Empty}
-
- # Attempt to get a job that doesn't exist
- Assert-Throws {Get-AzureRmDataLakeAnalyticsJob -ResourceGroupName $resourceGroupName -AccountName $accountName -JobIdentity [Guid]::Empty}
-
- # Attempt to Get debug data for a non-existent job
- Assert-Throws {Get-AzureRmDataLakeAnalyticsJobDebugInfo -ResourceGroupName $resourceGroupName -AccountName $accountName -JobIdentity [Guid]::Empty}
-
- $jobsWithDateOffset = Get-AzureRmDataLakeAnalyticsJob -ResourceGroupName $resourceGroupName -AccountName $accountName -SubmittedAfter $([DateTime]::Now)
-
- Assert-True {$jobsWithDateOffset.Count -eq 0} "Retrieval of jobs submitted after right now returned results and should not have"
-
- # Delete the DataLakeAnalytics account
- Assert-True {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
-
- # Verify that it is gone by trying to get it again
- Assert-Throws {Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ Assert-AreEqual $accountName $accountCreated.Name
+ Assert-AreEqual $location $accountCreated.Location
+ Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountCreated.Type
+ Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
+
+ # In loop to check if account exists
+ for ($i = 0; $i -le 60; $i++)
+ {
+ [array]$accountGet = Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName
+ if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
+ {
+ Assert-AreEqual $accountName $accountGet[0].Name
+ Assert-AreEqual $location $accountGet[0].Location
+ Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountGet[0].Type
+ Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
+ break
+ }
+
+ Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
+ [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(30000)
+ Assert-False {$i -eq 60} "dataLakeAnalytics accounts not in succeeded state even after 30 min."
+ }
+
+ # attempt to "cancel" a non-existent job
+ Assert-Throws {Stop-AzureRmDataLakeAnalyticsJob -AccountName $accountName -JobIdentity [Guid]::Empty}
+
+ # Attempt to get a job that doesn't exist
+ Assert-Throws {Get-AzureRmDataLakeAnalyticsJob -AccountName $accountName -JobIdentity [Guid]::Empty}
+
+ # Attempt to Get debug data for a non-existent job
+ Assert-Throws {Get-AzureRmDataLakeAnalyticsJobDebugInfo -AccountName $accountName -JobIdentity [Guid]::Empty}
+
+ $jobsWithDateOffset = Get-AzureRmDataLakeAnalyticsJob -AccountName $accountName -SubmittedAfter $([DateTime]::Now)
+
+ Assert-True {$jobsWithDateOffset.Count -eq 0} "Retrieval of jobs submitted after right now returned results and should not have"
+
+ # Delete the DataLakeAnalytics account
+ Assert-True {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
+
+ # Verify that it is gone by trying to get it again
+ Assert-Throws {Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ }
+ finally
+ {
+ # cleanup the resource group that was used in case it still exists. This is a best effort task, we ignore failures here.
+ Invoke-HandledCmdlet -Command {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ Invoke-HandledCmdlet -Command {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $dataLakeAccountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ Invoke-HandledCmdlet -Command {Remove-AzureRmResourceGroup -Name $resourceGroupName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ }
}
<#
@@ -331,328 +380,340 @@ function Test-DataLakeAnalyticsCatalog
{
param
(
- $resourceGroupName,
- $accountName,
- $dataLakeAccountName,
- $databaseName,
- $tableName,
- $tvfName,
- $viewName,
- $procName,
- $credentialName,
- $secretName,
- $secretPwd,
+ $resourceGroupName = (Get-ResourceGroupName),
+ $accountName = (Get-DataLakeAnalyticsAccountName),
+ $dataLakeAccountName = (Get-DataLakeStoreAccountName),
+ $databaseName = (getAssetName),
+ $tableName = (getAssetName),
+ $tvfName = (getAssetName),
+ $viewName = (getAssetName),
+ $procName = (getAssetName),
+ $credentialName = (getAssetName),
+ $secretName = (getAssetName),
+ $secretPwd = (getAssetName),
$location = "West US"
)
- # Creating Account
- $accountCreated = New-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location -DefaultDataLakeStore $dataLakeAccountName
+ try
+ {
+ # Creating Account and initial setup
+ New-AzureRmResourceGroup -Name $resourceGroupName -Location $location
+ New-AzureRmDataLakeStoreAccount -Name $dataLakeAccountName -Location $location -ResourceGroupName $resourceGroupName
+ $accountCreated = New-AzureRmDataLakeAnalyticsAccount -Name $accountName -Location $location -ResourceGroupName $resourceGroupName -DefaultDataLakeStore $dataLakeAccountName
- Assert-AreEqual $accountName $accountCreated.Name
- Assert-AreEqual $location $accountCreated.Location
- Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountCreated.Type
- Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
-
- # In loop to check if account exists
- for ($i = 0; $i -le 60; $i++)
- {
- [array]$accountGet = Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName
- if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
- {
- Assert-AreEqual $accountName $accountGet[0].Name
- Assert-AreEqual $location $accountGet[0].Location
- Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountGet[0].Type
- Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
- break
- }
-
- Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
- [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
- Assert-False {$i -eq 60} "dataLakeAnalytics accounts not in succeeded state even after 30 min."
- }
+ Assert-AreEqual $accountName $accountCreated.Name
+ Assert-AreEqual $location $accountCreated.Location
+ Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountCreated.Type
+ Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
+
+ # In loop to check if account exists
+ for ($i = 0; $i -le 60; $i++)
+ {
+ [array]$accountGet = Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName
+ if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
+ {
+ Assert-AreEqual $accountName $accountGet[0].Name
+ Assert-AreEqual $location $accountGet[0].Location
+ Assert-AreEqual "Microsoft.DataLakeAnalytics/accounts" $accountGet[0].Type
+ Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
+ break
+ }
+
+ Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
+ [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(30000)
+ Assert-False {$i -eq 60} "dataLakeAnalytics accounts not in succeeded state even after 30 min."
+ }
- # For now, all Job related tests just ensure that they have a valid response and do not throw.
- # Wait for two minutes prior to attempting to submit the job in the freshly created account.
- [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(120000)
+ # For now, all Job related tests just ensure that they have a valid response and do not throw.
+ # Wait for two minutes prior to attempting to submit the job in the freshly created account.
+ [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(120000)
- # Run a job to create the catalog items (except secret and credential)
- $scriptTemplate = @"
-DROP DATABASE IF EXISTS {0}; CREATE DATABASE {0};
-CREATE TABLE {0}.dbo.{1}
-(
- //Define schema of table
- UserId int,
- Start DateTime,
- Region string,
- Query string,
- Duration int,
- Urls string,
- ClickedUrls string,
- INDEX idx1 //Name of index
- CLUSTERED (Region ASC) //Column to cluster by
- PARTITIONED BY HASH (Region) //Column to partition by
-);
-DROP FUNCTION IF EXISTS {0}.dbo.{2};
-
-//create table weblogs on space-delimited website log data
-CREATE FUNCTION {0}.dbo.{2}()
-RETURNS @result TABLE
-(
- s_date DateTime,
- s_time string,
- s_sitename string,
- cs_method string,
- cs_uristem string,
- cs_uriquery string,
- s_port int,
- cs_username string,
- c_ip string,
- cs_useragent string,
- cs_cookie string,
- cs_referer string,
- cs_host string,
- sc_status int,
- sc_substatus int,
- sc_win32status int,
- sc_bytes int,
- cs_bytes int,
- s_timetaken int
-)
-AS
-BEGIN
-
- @result = EXTRACT
- s_date DateTime,
- s_time string,
- s_sitename string,
- cs_method string,
- cs_uristem string,
- cs_uriquery string,
- s_port int,
- cs_username string,
- c_ip string,
- cs_useragent string,
- cs_cookie string,
- cs_referer string,
- cs_host string,
- sc_status int,
- sc_substatus int,
- sc_win32status int,
- sc_bytes int,
- cs_bytes int,
- s_timetaken int
- FROM @"/Samples/Data/WebLog.log"
- USING Extractors.Text(delimiter:' ');
-
-RETURN;
-END;
-CREATE VIEW {0}.dbo.{3}
-AS
- SELECT * FROM
- (
- VALUES(1,2),(2,4)
- )
-AS
-T(a, b);
-CREATE PROCEDURE {0}.dbo.{4}()
-AS BEGIN
- CREATE VIEW {0}.dbo.{3}
- AS
- SELECT * FROM
- (
- VALUES(1,2),(2,4)
- )
- AS
- T(a, b);
-END;
+ # Run a job to create the catalog items (except secret and credential)
+ $scriptTemplate = @"
+ DROP DATABASE IF EXISTS {0}; CREATE DATABASE {0};
+ CREATE TABLE {0}.dbo.{1}
+ (
+ //Define schema of table
+ UserId int,
+ Start DateTime,
+ Region string,
+ Query string,
+ Duration int,
+ Urls string,
+ ClickedUrls string,
+ INDEX idx1 //Name of index
+ CLUSTERED (Region ASC) //Column to cluster by
+ PARTITIONED BY HASH (Region) //Column to partition by
+ );
+ DROP FUNCTION IF EXISTS {0}.dbo.{2};
+
+ //create table weblogs on space-delimited website log data
+ CREATE FUNCTION {0}.dbo.{2}()
+ RETURNS @result TABLE
+ (
+ s_date DateTime,
+ s_time string,
+ s_sitename string,
+ cs_method string,
+ cs_uristem string,
+ cs_uriquery string,
+ s_port int,
+ cs_username string,
+ c_ip string,
+ cs_useragent string,
+ cs_cookie string,
+ cs_referer string,
+ cs_host string,
+ sc_status int,
+ sc_substatus int,
+ sc_win32status int,
+ sc_bytes int,
+ cs_bytes int,
+ s_timetaken int
+ )
+ AS
+ BEGIN
+
+ @result = EXTRACT
+ s_date DateTime,
+ s_time string,
+ s_sitename string,
+ cs_method string,
+ cs_uristem string,
+ cs_uriquery string,
+ s_port int,
+ cs_username string,
+ c_ip string,
+ cs_useragent string,
+ cs_cookie string,
+ cs_referer string,
+ cs_host string,
+ sc_status int,
+ sc_substatus int,
+ sc_win32status int,
+ sc_bytes int,
+ cs_bytes int,
+ s_timetaken int
+ FROM @"/Samples/Data/WebLog.log"
+ USING Extractors.Text(delimiter:' ');
+
+ RETURN;
+ END;
+ CREATE VIEW {0}.dbo.{3}
+ AS
+ SELECT * FROM
+ (
+ VALUES(1,2),(2,4)
+ )
+ AS
+ T(a, b);
+ CREATE PROCEDURE {0}.dbo.{4}()
+ AS BEGIN
+ CREATE VIEW {0}.dbo.{3}
+ AS
+ SELECT * FROM
+ (
+ VALUES(1,2),(2,4)
+ )
+ AS
+ T(a, b);
+ END;
"@
- # run the script
- $scriptToRun = [string]::Format($scriptTemplate, $databaseName, $tableName, $tvfName, $viewName, $procName)
- $jobInfo = Submit-AzureRmDataLakeAnalyticsJob -ResourceGroupName $resourceGroupName -AccountName $accountName -Name "TestJob" -Script $scriptToRun
- $result = Wait-AzureRMDataLakeAnalyticsJob -ResourceGroupName $resourceGroupName -AccountName $accountName -JobId $jobInfo.JobId
- Assert-AreEqual "Succeeded" $result.Result
+ # run the script
+ $scriptToRun = [string]::Format($scriptTemplate, $databaseName, $tableName, $tvfName, $viewName, $procName)
+ $jobInfo = Submit-AzureRmDataLakeAnalyticsJob -AccountName $accountName -Name "TestJob" -Script $scriptToRun
+ $result = Wait-AzureRMDataLakeAnalyticsJob -AccountName $accountName -JobId $jobInfo.JobId
+ Assert-AreEqual "Succeeded" $result.Result
- # retrieve the list of databases and ensure the created DB is in it
- $itemList = Get-AzureRMDataLakeAnalyticsCatalogItem -ResourceGroupName $resourceGroupName -AccountName $accountName -ItemType Database
+ # retrieve the list of databases and ensure the created DB is in it
+ $itemList = Get-AzureRMDataLakeAnalyticsCatalogItem -AccountName $accountName -ItemType Database
- Assert-NotNull $itemList "The database list is null"
+ Assert-NotNull $itemList "The database list is null"
- Assert-True {$itemList.count -gt 0} "The database list is empty"
- $found = $false
- foreach($item in $itemList)
- {
- if($item.Name -eq $databaseName)
+ Assert-True {$itemList.count -gt 0} "The database list is empty"
+ $found = $false
+ foreach($item in $itemList)
{
- $found = $true
- break
+ if($item.DatabaseName -eq $databaseName)
+ {
+ $found = $true
+ break
+ }
}
- }
- Assert-True {$found} "Could not find the database $databaseName in the database list"
+ Assert-True {$found} "Could not find the database $databaseName in the database list"
- # retrieve the specific DB
- $specificItem = Get-AzureRMDataLakeAnalyticsCatalogItem -ResourceGroupName $resourceGroupName -AccountName $accountName -ItemType Database -Path $databaseName
- Assert-NotNull $specificItem "Could not retrieve the db by name"
- Assert-AreEqual $databaseName $specificItem.Name
+ # retrieve the specific DB
+ $specificItem = Get-AzureRMDataLakeAnalyticsCatalogItem -AccountName $accountName -ItemType Database -Path $databaseName
+ Assert-NotNull $specificItem "Could not retrieve the db by name"
+ Assert-AreEqual $databaseName $specificItem.DatabaseName
- # retrieve the list of tables and ensure the created table is in it
- $itemList = Get-AzureRMDataLakeAnalyticsCatalogItem -ResourceGroupName $resourceGroupName -AccountName $accountName -ItemType Table -Path "$databaseName.dbo"
+ # retrieve the list of tables and ensure the created table is in it
+ $itemList = Get-AzureRMDataLakeAnalyticsCatalogItem -AccountName $accountName -ItemType Table -Path "$databaseName.dbo"
- Assert-NotNull $itemList "The table list is null"
+ Assert-NotNull $itemList "The table list is null"
- Assert-True {$itemList.count -gt 0} "The table list is empty"
- $found = $false
- foreach($item in $itemList)
- {
- if($item.Name -eq $tableName)
+ Assert-True {$itemList.count -gt 0} "The table list is empty"
+ $found = $false
+ foreach($item in $itemList)
{
- $found = $true
- break
+ if($item.TableName -eq $tableName)
+ {
+ $found = $true
+ break
+ }
}
- }
- Assert-True {$found} "Could not find the table $tableName in the table list"
+ Assert-True {$found} "Could not find the table $tableName in the table list"
- # retrieve the specific table
- $specificItem = Get-AzureRMDataLakeAnalyticsCatalogItem -ResourceGroupName $resourceGroupName -AccountName $accountName -ItemType Table -Path "$databaseName.dbo.$tableName"
- Assert-NotNull $specificItem "Could not retrieve the table by name"
- Assert-AreEqual $tableName $specificItem.Name
+ # retrieve the specific table
+ $specificItem = Get-AzureRMDataLakeAnalyticsCatalogItem -AccountName $accountName -ItemType Table -Path "$databaseName.dbo.$tableName"
+ Assert-NotNull $specificItem "Could not retrieve the table by name"
+ Assert-AreEqual $tableName $specificItem.TableName
- # retrieve the list of table valued functions and ensure the created tvf is in it
- $itemList = Get-AzureRMDataLakeAnalyticsCatalogItem -ResourceGroupName $resourceGroupName -AccountName $accountName -ItemType TableValuedFunction -Path "$databaseName.dbo"
+ # retrieve the list of table valued functions and ensure the created tvf is in it
+ $itemList = Get-AzureRMDataLakeAnalyticsCatalogItem -AccountName $accountName -ItemType TableValuedFunction -Path "$databaseName.dbo"
- Assert-NotNull $itemList "The TVF list is null"
+ Assert-NotNull $itemList "The TVF list is null"
- Assert-True {$itemList.count -gt 0} "The TVF list is empty"
- $found = $false
- foreach($item in $itemList)
- {
- if($item.Name -eq $tvfName)
+ Assert-True {$itemList.count -gt 0} "The TVF list is empty"
+ $found = $false
+ foreach($item in $itemList)
{
- $found = $true
- break
+ if($item.TvfName -eq $tvfName)
+ {
+ $found = $true
+ break
+ }
}
- }
- Assert-True {$found} "Could not find the TVF $tvfName in the TVF list"
+ Assert-True {$found} "Could not find the TVF $tvfName in the TVF list"
- # retrieve the specific TVF
- $specificItem = Get-AzureRMDataLakeAnalyticsCatalogItem -ResourceGroupName $resourceGroupName -AccountName $accountName -ItemType TableValuedFunction -Path "$databaseName.dbo.$tvfName"
- Assert-NotNull $specificItem "Could not retrieve the TVF by name"
- Assert-AreEqual $tvfName $specificItem.Name
+ # retrieve the specific TVF
+ $specificItem = Get-AzureRMDataLakeAnalyticsCatalogItem -AccountName $accountName -ItemType TableValuedFunction -Path "$databaseName.dbo.$tvfName"
+ Assert-NotNull $specificItem "Could not retrieve the TVF by name"
+ Assert-AreEqual $tvfName $specificItem.TvfName
- # retrieve the list of procedures and ensure the created procedure is in it
- $itemList = Get-AzureRMDataLakeAnalyticsCatalogItem -ResourceGroupName $resourceGroupName -AccountName $accountName -ItemType Procedure -Path "$databaseName.dbo"
+ # retrieve the list of procedures and ensure the created procedure is in it
+ $itemList = Get-AzureRMDataLakeAnalyticsCatalogItem -AccountName $accountName -ItemType Procedure -Path "$databaseName.dbo"
- Assert-NotNull $itemList "The procedure list is null"
+ Assert-NotNull $itemList "The procedure list is null"
- Assert-True {$itemList.count -gt 0} "The procedure list is empty"
- $found = $false
- foreach($item in $itemList)
- {
- if($item.Name -eq $procName)
+ Assert-True {$itemList.count -gt 0} "The procedure list is empty"
+ $found = $false
+ foreach($item in $itemList)
{
- $found = $true
- break
+ if($item.ProcName -eq $procName)
+ {
+ $found = $true
+ break
+ }
}
- }
- Assert-True {$found} "Could not find the procedure $procName in the procedure list"
+ Assert-True {$found} "Could not find the procedure $procName in the procedure list"
- # retrieve the specific procedure
- $specificItem = Get-AzureRMDataLakeAnalyticsCatalogItem -ResourceGroupName $resourceGroupName -AccountName $accountName -ItemType Procedure -Path "$databaseName.dbo.$procName"
- Assert-NotNull $specificItem "Could not retrieve the procedure by name"
- Assert-AreEqual $procName $specificItem.Name
+ # retrieve the specific procedure
+ $specificItem = Get-AzureRMDataLakeAnalyticsCatalogItem -AccountName $accountName -ItemType Procedure -Path "$databaseName.dbo.$procName"
+ Assert-NotNull $specificItem "Could not retrieve the procedure by name"
+ Assert-AreEqual $procName $specificItem.ProcName
- # retrieve the list of views and ensure the created view is in it
- $itemList = Get-AzureRMDataLakeAnalyticsCatalogItem -ResourceGroupName $resourceGroupName -AccountName $accountName -ItemType View -Path "$databaseName.dbo"
+ # retrieve the list of views and ensure the created view is in it
+ $itemList = Get-AzureRMDataLakeAnalyticsCatalogItem -AccountName $accountName -ItemType View -Path "$databaseName.dbo"
- Assert-NotNull $itemList "The view list is null"
+ Assert-NotNull $itemList "The view list is null"
- Assert-True {$itemList.count -gt 0} "The view list is empty"
- $found = $false
- foreach($item in $itemList)
- {
- if($item.Name -eq $viewName)
+ Assert-True {$itemList.count -gt 0} "The view list is empty"
+ $found = $false
+ foreach($item in $itemList)
{
- $found = $true
- break
+ if($item.ViewName -eq $viewName)
+ {
+ $found = $true
+ break
+ }
}
- }
- Assert-True {$found} "Could not find the view $viewName in the view list"
+ Assert-True {$found} "Could not find the view $viewName in the view list"
- # retrieve the specific view
- $specificItem = Get-AzureRMDataLakeAnalyticsCatalogItem -ResourceGroupName $resourceGroupName -AccountName $accountName -ItemType View -Path "$databaseName.dbo.$viewName"
- Assert-NotNull $specificItem "Could not retrieve the view by name"
- Assert-AreEqual $viewName $specificItem.Name
+ # retrieve the specific view
+ $specificItem = Get-AzureRMDataLakeAnalyticsCatalogItem -AccountName $accountName -ItemType View -Path "$databaseName.dbo.$viewName"
+ Assert-NotNull $specificItem "Could not retrieve the view by name"
+ Assert-AreEqual $viewName $specificItem.ViewName
- # create the secret
- $pw = ConvertTo-SecureString -String $secretPwd -AsPlainText -Force
- $secret = New-Object System.Management.Automation.PSCredential($secretName,$pw)
+ # create the secret
+ $pw = ConvertTo-SecureString -String $secretPwd -AsPlainText -Force
+ $secret = New-Object System.Management.Automation.PSCredential($secretName,$pw)
- New-AzureRmDataLakeAnalyticsCatalogSecret -ResourceGroupName $resourceGroupName -AccountName $accountName -secret $secret -DatabaseName $databaseName -Uri "https://pstest.contoso.com:443"
+ New-AzureRmDataLakeAnalyticsCatalogSecret -AccountName $accountName -secret $secret -DatabaseName $databaseName -Uri "https://pstest.contoso.com:443"
- # verify that the credential can be retrieved
- $getSecret = Get-AzureRMDataLakeAnalyticsCatalogItem -ResourceGroupName $resourceGroupName -AccountName $accountName -ItemType Secret -Path "$databaseName.$secretName"
- Assert-NotNull $getSecret "Could not retrieve the secret"
+ # verify that the credential can be retrieved
+ $getSecret = Get-AzureRMDataLakeAnalyticsCatalogItem -AccountName $accountName -ItemType Secret -Path "$databaseName.$secretName"
+ Assert-NotNull $getSecret "Could not retrieve the secret"
- # verify that attmepting to create the secret again throws
- # TODO: enable once we actually do throw when re-creating a secret.
- # Assert-Throws {New-AzureRmDataLakeAnalyticsCatalogSecret -ResourceGroupName $resourceGroupName -AccountName $accountName -secret $secret -DatabaseName $databaseName -Uri "https://pstest.contoso.com:8080"}
+ # verify that attmepting to create the secret again throws
+ # TODO: enable once we actually do throw when re-creating a secret.
+ # Assert-Throws {New-AzureRmDataLakeAnalyticsCatalogSecret -AccountName $accountName -secret $secret -DatabaseName $databaseName -Uri "https://pstest.contoso.com:8080"}
- # credential job template
- $credentialJobTemplate = @"
-USE {0};
-CREATE CREDENTIAL {1} WITH USER_NAME = "scope@rkm4grspxa", IDENTITY = "{2}";
+ # credential job template
+ $credentialJobTemplate = @"
+ USE {0};
+ CREATE CREDENTIAL {1} WITH USER_NAME = "scope@rkm4grspxa", IDENTITY = "{2}";
"@
- $credentialJob = [string]::Format($credentialJobTemplate, $databaseName, $credentialName, $secretName)
+ $credentialJob = [string]::Format($credentialJobTemplate, $databaseName, $credentialName, $secretName)
- $jobInfo = Submit-AzureRmDataLakeAnalyticsJob -ResourceGroupName $resourceGroupName -AccountName $accountName -Name "TestJobCredential" -Script $credentialJob
- $result = Wait-AzureRMDataLakeAnalyticsJob -ResourceGroupName $resourceGroupName -AccountName $accountName -JobId $jobInfo.JobId
- Assert-AreEqual "Succeeded" $result.Result
+ $jobInfo = Submit-AzureRmDataLakeAnalyticsJob -AccountName $accountName -Name "TestJobCredential" -Script $credentialJob
+ $result = Wait-AzureRMDataLakeAnalyticsJob -AccountName $accountName -JobId $jobInfo.JobId
+ Assert-AreEqual "Succeeded" $result.Result
- # retrieve the list of credentials and ensure the created credential is in it
- $itemList = Get-AzureRMDataLakeAnalyticsCatalogItem -ResourceGroupName $resourceGroupName -AccountName $accountName -ItemType Credential -Path $databaseName
+ # retrieve the list of credentials and ensure the created credential is in it
+ $itemList = Get-AzureRMDataLakeAnalyticsCatalogItem -AccountName $accountName -ItemType Credential -Path $databaseName
- Assert-NotNull $itemList "The credential list is null"
+ Assert-NotNull $itemList "The credential list is null"
- Assert-True {$itemList.count -gt 0} "The credential list is empty"
- $found = $false
- foreach($item in $itemList)
- {
- if($item.Name -eq $credentialName)
+ Assert-True {$itemList.count -gt 0} "The credential list is empty"
+ $found = $false
+ foreach($item in $itemList)
{
- $found = $true
- break
+ if($item.CredentialName -eq $credentialName)
+ {
+ $found = $true
+ break
+ }
}
- }
- # retrieve the specific credential
- $specificItem = Get-AzureRMDataLakeAnalyticsCatalogItem -ResourceGroupName $resourceGroupName -AccountName $accountName -ItemType Credential -Path "$databaseName.$credentialName"
- Assert-NotNull $specificItem "Could not retrieve the credential by name"
- Assert-AreEqual $credentialName $specificItem.Name
-
- # credential job template
- $credentialJobTemplate = @"
-USE {0};
-DROP CREDENTIAL {1};
+ # retrieve the specific credential
+ $specificItem = Get-AzureRMDataLakeAnalyticsCatalogItem -AccountName $accountName -ItemType Credential -Path "$databaseName.$credentialName"
+ Assert-NotNull $specificItem "Could not retrieve the credential by name"
+ Assert-AreEqual $credentialName $specificItem.CredentialName
+
+ # credential job template
+ $credentialJobTemplate = @"
+ USE {0};
+ DROP CREDENTIAL {1};
"@
- $credentialJob = [string]::Format($credentialJobTemplate, $databaseName, $credentialName)
+ $credentialJob = [string]::Format($credentialJobTemplate, $databaseName, $credentialName)
- $jobInfo = Submit-AzureRmDataLakeAnalyticsJob -ResourceGroupName $resourceGroupName -AccountName $accountName -Name "TestJobCredential" -Script $credentialJob
- $result = Wait-AzureRMDataLakeAnalyticsJob -ResourceGroupName $resourceGroupName -AccountName $accountName -JobId $jobInfo.JobId
- Assert-AreEqual "Succeeded" $result.Result
+ $jobInfo = Submit-AzureRmDataLakeAnalyticsJob -AccountName $accountName -Name "TestJobCredential" -Script $credentialJob
+ $result = Wait-AzureRMDataLakeAnalyticsJob -AccountName $accountName -JobId $jobInfo.JobId
+ Assert-AreEqual "Succeeded" $result.Result
- # delete the secret
- Remove-AzureRmDataLakeAnalyticsCatalogSecret -ResourceGroupName $resourceGroupName -AccountName $accountName -Name $secretName -DatabaseName $databaseName -Force
+ # delete the secret
+ Remove-AzureRmDataLakeAnalyticsCatalogSecret -AccountName $accountName -Name $secretName -DatabaseName $databaseName -Force
- # verify that the secret cannot be retrieved
- Assert-Throws {Get-AzureRMDataLakeAnalyticsCatalogItem -ResourceGroupName $resourceGroupName -AccountName $accountName -ItemType Secret -Path "$databaseName.$secretName"}
+ # verify that the secret cannot be retrieved
+ Assert-Throws {Get-AzureRMDataLakeAnalyticsCatalogItem -AccountName $accountName -ItemType Secret -Path "$databaseName.$secretName"}
- # Delete the DataLakeAnalytics account
- Assert-True {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
+ # Delete the DataLakeAnalytics account
+ Assert-True {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
- # Verify that it is gone by trying to get it again
- Assert-Throws {Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ # Verify that it is gone by trying to get it again
+ Assert-Throws {Get-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ }
+ finally
+ {
+ # cleanup the resource group that was used in case it still exists. This is a best effort task, we ignore failures here.
+ Invoke-HandledCmdlet -Command {Remove-AzureRmDataLakeAnalyticsAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ Invoke-HandledCmdlet -Command {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $dataLakeAccountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ Invoke-HandledCmdlet -Command {Remove-AzureRmResourceGroup -Name $resourceGroupName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ }
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTestsBase.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTestsBase.cs
index 7cc6b36077ed..3902a055c989 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTestsBase.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/AdlaTestsBase.cs
@@ -12,191 +12,261 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net;
+using Microsoft.Azure.Gallery;
+using Microsoft.Azure.Management.Authorization;
+using Microsoft.Azure.Management.Resources;
+using Microsoft.Azure.Management.DataLake.Store;
+using Microsoft.Azure.Management.Resources.Models;
+using Microsoft.Azure.Subscriptions;
+using Microsoft.Azure.Test.HttpRecorder;
+using Microsoft.Rest.ClientRuntime.Azure.TestFramework;
+using Microsoft.WindowsAzure.Commands.ScenarioTest;
+using LegacyTest = Microsoft.Azure.Test;
+using TestEnvironmentFactory = Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestEnvironmentFactory;
+using TestUtilities = Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities;
+using Microsoft.Azure.Management.DataLake.Analytics;
+using Microsoft.Azure.Management.Storage;
+using Microsoft.Azure.Management.Storage.Models;
using Microsoft.Azure.Commands.Common.Authentication;
-using Microsoft.Azure.Management.DataLake.AnalyticsCatalog;
-using Microsoft.Azure.Management.DataLake.AnalyticsJob;
namespace Microsoft.Azure.Commands.DataLakeAnalytics.Test.ScenarioTests
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management.DataLake.Store;
- using Microsoft.Azure.Management.DataLake.Store.Models;
- using Microsoft.Azure.Management.Storage;
- using Microsoft.Azure.Management.Storage.Models;
- using Microsoft.Azure.Management.DataLake.Analytics;
- using Microsoft.Azure.Management.Resources;
- using Microsoft.Azure.Management.Resources.Models;
- using Microsoft.Azure.Test;
- using Microsoft.WindowsAzure.Commands.ScenarioTest;
- using System;
- using System.Net;
- using System.Reflection;
-
- public abstract class AdlaTestsBase : TestBase, IDisposable
+ public class AdlaTestsBase
{
internal string resourceGroupName { get; set; }
- internal string dataLakeAnalyticsAccountName { get; set; }
- internal string dataLakeStoreAccountName { get; set; }
- internal string secondDataLakeStoreAccountName { get; set; }
internal string azureBlobStoreName { get; set; }
internal string azureBlobStoreAccessKey { get; set; }
- internal string dbName { get; set; }
- internal string tableName { get; set; }
- internal string tvfName { get; set; }
- internal string procName { get; set; }
- internal string viewName { get; set; }
- internal string secretName { get; set; }
- internal string secretPwd { get; set; }
- internal string credName { get; set; }
internal const string resourceGroupLocation = "East US 2";
+ private LegacyTest.CSMTestEnvironmentFactory csmTestFactory;
private EnvironmentSetupHelper helper;
+ private const string AuthorizationApiVersion = "2014-07-01-preview";
+
+ public ResourceManagementClient ResourceManagementClient { get; private set; }
+
+ public SubscriptionClient SubscriptionClient { get; private set; }
+
+ public DataLakeStoreAccountManagementClient DataLakeStoreAccountManagementClient { get; private set; }
+
+ public DataLakeAnalyticsAccountManagementClient DataLakeAnalyticsAccountManagementClient { get; private set; }
+
+ public DataLakeAnalyticsJobManagementClient DataLakeAnalyticsJobManagementClient { get; private set; }
+
+ public DataLakeAnalyticsCatalogManagementClient DataLakeAnalyticsCatalogManagementClient { get; private set; }
- private DataLakeAnalyticsManagementClient dataLakeAnalyticsManagementClient;
- private DataLakeAnalyticsJobManagementClient dataLakeAnalyticsJobManagementClient;
- private DataLakeAnalyticsCatalogManagementClient dataLakeAnalyticsCatalogManagementClient;
- private DataLakeStoreManagementClient dataLakeStoreManagementClient;
- private ResourceManagementClient resourceManagementClient;
- private StorageManagementClient storageManagementClient;
+ public StorageManagementClient StorageManagementClient { get; private set; }
+
+ public AuthorizationManagementClient AuthorizationManagementClient { get; private set; }
+
+ public GalleryClient GalleryClient { get; private set; }
+
+ public static AdlaTestsBase NewInstance
+ {
+ get
+ {
+ return new AdlaTestsBase();
+ }
+ }
protected AdlaTestsBase()
{
helper = new EnvironmentSetupHelper();
- dataLakeAnalyticsManagementClient = GetDataLakeAnalyticsManagementClient();
- dataLakeAnalyticsJobManagementClient = GetDataLakeAnalyticsJobManagementClient();
- dataLakeAnalyticsCatalogManagementClient = GetDataLakeAnalyticsCatalogManagementClient();
- resourceManagementClient = GetResourceManagementClient();
- dataLakeStoreManagementClient = GetDataLakeStoreManagementClient();
- storageManagementClient = GetStorageManagementClient();
- this.resourceGroupName = TestUtilities.GenerateName("abarg1");
- this.dataLakeAnalyticsAccountName = TestUtilities.GenerateName("testaba1");
- this.dataLakeStoreAccountName = TestUtilities.GenerateName("datalake01");
- this.secondDataLakeStoreAccountName = TestUtilities.GenerateName("datalake02");
- this.azureBlobStoreName = TestUtilities.GenerateName("azureblob01");
- this.dbName = TestUtilities.GenerateName("adladb01");
- this.tableName = TestUtilities.GenerateName("adlatable01");
- this.tvfName = TestUtilities.GenerateName("adlatvf01");
- this.procName = TestUtilities.GenerateName("adlaproc01");
- this.viewName = TestUtilities.GenerateName("adlaview01");
- this.secretName = TestUtilities.GenerateName("adlasecret01");
- this.secretPwd = TestUtilities.GenerateName("adlasecretpwd01");
- this.credName = TestUtilities.GenerateName("adlacred01");
}
- protected void SetupManagementClients()
+ public void RunPsTest(bool createWasbAccount, params string[] scripts)
{
- helper.SetupManagementClients(dataLakeAnalyticsManagementClient, dataLakeAnalyticsJobManagementClient,
- dataLakeAnalyticsCatalogManagementClient,
- resourceManagementClient, dataLakeStoreManagementClient, storageManagementClient);
+ var callingClassType = TestUtilities.GetCallingClass(2);
+ var mockName = TestUtilities.GetCurrentMethodName(2);
+
+ RunPsTestWorkflow(createWasbAccount,
+ () => scripts,
+ // no custom initializer
+ null,
+ // no custom cleanup
+ null,
+ callingClassType,
+ mockName);
}
- protected void RunPowerShellTest(bool createWasbAccount, params string[] scripts)
+
+ public void RunPsTestWorkflow(bool createWasbAccount,
+ Func scriptBuilder,
+ Action initialize,
+ Action cleanup,
+ string callingClassType,
+ string mockName)
{
- using (UndoContext context = UndoContext.Current)
+ Dictionary d = new Dictionary();
+ d.Add("Microsoft.Authorization", AuthorizationApiVersion);
+ HttpMockServer.Matcher = new PermissiveRecordMatcherWithApiExclusion(false, d);
+
+ using (MockContext context = MockContext.Start(callingClassType, mockName))
{
- context.Start(TestUtilities.GetCallingClass(2), TestUtilities.GetCurrentMethodName(2));
- SetupManagementClients();
+ this.csmTestFactory = new LegacyTest.CSMTestEnvironmentFactory();
+ if (initialize != null)
+ {
+ initialize(this.csmTestFactory);
+ }
- // Create the resource group
+ SetupManagementClients(context);
+
+ // register the namespace.
this.TryRegisterSubscriptionForResource();
- this.TryCreateResourceGroup(this.resourceGroupName, resourceGroupLocation);
- this.TryCreateDataLakeStoreAccount(this.resourceGroupName, this.dataLakeStoreAccountName, resourceGroupLocation);
- this.TryCreateDataLakeStoreAccount(this.resourceGroupName, this.secondDataLakeStoreAccountName, resourceGroupLocation);
+ helper.SetupEnvironment(AzureModule.AzureResourceManager);
+ var callingClassName = callingClassType
+ .Split(new[] { "." }, StringSplitOptions.RemoveEmptyEntries)
+ .Last();
+ helper.SetupModules(AzureModule.AzureResourceManager, "ScenarioTests\\Common.ps1", "ScenarioTests\\" + callingClassName + ".ps1",
+ helper.RMProfileModule, helper.RMResourceModule, helper.GetRMModulePath(@"AzureRM.DataLakeAnalytics.psd1"), helper.GetRMModulePath(@"AzureRM.DataLakeStore.psd1"));
+
if (createWasbAccount)
{
string storageSuffix;
+ this.resourceGroupName = TestUtilities.GenerateName("abarg1");
+ TryCreateResourceGroup(this.resourceGroupName, resourceGroupLocation);
+ this.azureBlobStoreName = TestUtilities.GenerateName("azureblob01");
this.azureBlobStoreAccessKey = this.TryCreateStorageAccount(this.resourceGroupName,
this.azureBlobStoreName,
"DataLakeAnalyticsTestStorage", "DataLakeAnalyticsTestStorageDescription", resourceGroupLocation,
out storageSuffix);
}
- helper.SetupEnvironment(AzureModule.AzureResourceManager);
- helper.SetupModules(AzureModule.AzureResourceManager, "ScenarioTests\\" + this.GetType().Name + ".ps1",
- helper.RMProfileModule, helper.GetRMModulePath(@"AzureRM.DataLakeAnalytics.psd1"));
-
- // inject the access key into the script if necessary.
- for (int i =0; i < scripts.Length; i++)
+ try
{
- if (scripts[i].Contains("-blobAccountKey"))
+ if (scriptBuilder != null)
{
- scripts[i] = scripts[i].Replace("-blobAccountKey",
- string.Format("-blobAccountKey '{0}'", this.azureBlobStoreAccessKey));
+ var psScripts = scriptBuilder();
+
+ if (psScripts != null)
+ {
+ // inject the access key into the script if necessary.
+ for (int i = 0; i < psScripts.Length; i++)
+ {
+ if (psScripts[i].Contains("-blobAccountKey") && createWasbAccount)
+ {
+ psScripts[i] = psScripts[i].Replace("-blobAccountKey",
+ string.Format("-blobAccountName {0} -blobAccountKey '{1}'", this.azureBlobStoreName, this.azureBlobStoreAccessKey));
+ }
+ }
+
+ helper.RunPowerShellTest(psScripts);
+ }
}
}
+ finally
+ {
+ if (createWasbAccount)
+ {
+ try
+ {
+ ResourceManagementClient.ResourceGroups.Delete(this.resourceGroupName);
+ }
+ catch
+ {
+ // best effort cleanup.
+ }
+ }
- helper.RunPowerShellTest(scripts);
+ if (cleanup != null)
+ {
+ cleanup();
+ }
+ }
}
}
+ private void SetupManagementClients(MockContext context)
+ {
+ ResourceManagementClient = GetResourceManagementClient();
+ SubscriptionClient = GetSubscriptionClient();
+ DataLakeStoreAccountManagementClient = GetDataLakeStoreAccountManagementClient(context);
+ DataLakeAnalyticsAccountManagementClient = GetDataLakeAnalyticsAccountManagementClient(context);
+ DataLakeAnalyticsJobManagementClient = GetDataLakeAnalyticsJobManagementClient(context);
+ DataLakeAnalyticsCatalogManagementClient = GetDataLakeAnalyticsCatalogManagementClient(context);
+ AuthorizationManagementClient = GetAuthorizationManagementClient(context);
+ StorageManagementClient = GetStorageManagementClient();
+ GalleryClient = GetGalleryClient();
+ helper.SetupManagementClients(ResourceManagementClient,
+ SubscriptionClient,
+ DataLakeAnalyticsAccountManagementClient,
+ DataLakeAnalyticsJobManagementClient,
+ DataLakeAnalyticsCatalogManagementClient,
+ DataLakeStoreAccountManagementClient,
+ AuthorizationManagementClient,
+ StorageManagementClient,
+ GalleryClient
+ );
+ }
+
#region client creation helpers
- protected DataLakeAnalyticsManagementClient GetDataLakeAnalyticsManagementClient()
+ private AuthorizationManagementClient GetAuthorizationManagementClient(MockContext context)
{
- return TestBase.GetServiceClient(new CSMTestEnvironmentFactory());
+ return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory);
}
- protected DataLakeAnalyticsJobManagementClient GetDataLakeAnalyticsJobManagementClient()
+ private ResourceManagementClient GetResourceManagementClient()
{
- return GetDataLakeAnalyticsJobOrCatalogServiceClient(new CSMTestEnvironmentFactory());
+ return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory);
}
- protected DataLakeAnalyticsCatalogManagementClient GetDataLakeAnalyticsCatalogManagementClient()
+ private StorageManagementClient GetStorageManagementClient()
{
- return GetDataLakeAnalyticsJobOrCatalogServiceClient(new CSMTestEnvironmentFactory());
+ return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory);
}
- protected DataLakeStoreManagementClient GetDataLakeStoreManagementClient()
+ private SubscriptionClient GetSubscriptionClient()
{
- return TestBase.GetServiceClient(new CSMTestEnvironmentFactory());
+ return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory);
}
- protected StorageManagementClient GetStorageManagementClient()
+ private DataLakeStoreAccountManagementClient GetDataLakeStoreAccountManagementClient(MockContext context)
{
- return TestBase.GetServiceClient(new CSMTestEnvironmentFactory());
+ return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment());
}
- protected ResourceManagementClient GetResourceManagementClient()
+ private DataLakeAnalyticsAccountManagementClient GetDataLakeAnalyticsAccountManagementClient(MockContext context)
{
- return TestBase.GetServiceClient(new CSMTestEnvironmentFactory());
+ return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment());
}
- #endregion
- #region private helper methods
+ private DataLakeAnalyticsJobManagementClient GetDataLakeAnalyticsJobManagementClient(MockContext context)
+ {
+ var currentEnvironment = TestEnvironmentFactory.GetTestEnvironment();
+ var toReturn = context.GetServiceClient(currentEnvironment, true);
+ toReturn.AdlaJobDnsSuffix =
+ currentEnvironment.Endpoints.DataLakeAnalyticsJobAndCatalogServiceUri.OriginalString.Replace("https://", "");
+ return toReturn;
+ }
- ///
- /// Gets DataLakeAnalytics catalog or job client for the current test environment
- ///
- ///
- ///
- ///
- private static T GetDataLakeAnalyticsJobOrCatalogServiceClient(
- TestEnvironmentFactory factory)
- where T : class
+ private DataLakeAnalyticsCatalogManagementClient GetDataLakeAnalyticsCatalogManagementClient(MockContext context)
{
- TestEnvironment currentEnvironment = factory.GetTestEnvironment();
- T client = null;
-
- ConstructorInfo constructor = typeof(T).GetConstructor(new Type[]
- {
- typeof(SubscriptionCloudCredentials),
- typeof(string)
- });
- client = constructor.Invoke(new object[]
- {
- currentEnvironment.Credentials as SubscriptionCloudCredentials,
- // Have to remove the https:// since this is a suffix
- currentEnvironment.Endpoints.DataLakeAnalyticsJobAndCatalogServiceUri.OriginalString.Replace("https://","") }) as T;
-
- return AddMockHandler(ref client);
+ var currentEnvironment = TestEnvironmentFactory.GetTestEnvironment();
+ var toReturn = context.GetServiceClient(currentEnvironment, true);
+ toReturn.AdlaCatalogDnsSuffix =
+ currentEnvironment.Endpoints.DataLakeAnalyticsJobAndCatalogServiceUri.OriginalString.Replace("https://", "");
+ return toReturn;
}
+ private GalleryClient GetGalleryClient()
+ {
+ return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory);
+ }
+ #endregion
+
+ #region private helper methods
+
private void TryRegisterSubscriptionForResource(string providerName = "Microsoft.DataLakeAnalytics")
{
- var reg = resourceManagementClient.Providers.Register(providerName);
+ var reg = ResourceManagementClient.Providers.Register(providerName);
ThrowIfTrue(reg == null, "resourceManagementClient.Providers.Register returned null.");
ThrowIfTrue(reg.StatusCode != HttpStatusCode.OK, string.Format("resourceManagementClient.Providers.Register returned with status code {0}", reg.StatusCode));
- var resultAfterRegister = resourceManagementClient.Providers.Get(providerName);
+ var resultAfterRegister = ResourceManagementClient.Providers.Get(providerName);
ThrowIfTrue(resultAfterRegister == null, "resourceManagementClient.Providers.Get returned null.");
ThrowIfTrue(string.IsNullOrEmpty(resultAfterRegister.Provider.Id), "Provider.Id is null or empty.");
ThrowIfTrue(!providerName.Equals(resultAfterRegister.Provider.Namespace), string.Format("Provider name is not equal to {0}.", providerName));
@@ -209,31 +279,12 @@ private void TryRegisterSubscriptionForResource(string providerName = "Microsoft
private void TryCreateResourceGroup(string resourceGroupName, string location)
{
- ResourceGroupCreateOrUpdateResult result = resourceManagementClient.ResourceGroups.CreateOrUpdate(resourceGroupName, new ResourceGroup { Location = location });
- var newlyCreatedGroup = resourceManagementClient.ResourceGroups.Get(resourceGroupName);
+ ResourceGroupCreateOrUpdateResult result = ResourceManagementClient.ResourceGroups.CreateOrUpdate(resourceGroupName, new ResourceGroup { Location = location });
+ var newlyCreatedGroup = ResourceManagementClient.ResourceGroups.Get(resourceGroupName);
ThrowIfTrue(newlyCreatedGroup == null, "resourceManagementClient.ResourceGroups.Get returned null.");
ThrowIfTrue(!resourceGroupName.Equals(newlyCreatedGroup.ResourceGroup.Name), string.Format("resourceGroupName is not equal to {0}", resourceGroupName));
}
- private string TryCreateDataLakeStoreAccount(string resourceGroupName, string dataLakeAccountName, string location)
- {
- var dataLakeCreateParameters = new DataLakeStoreAccountCreateOrUpdateParameters
- {
- DataLakeStoreAccount = new DataLakeStoreAccount
- {
- Location = location,
- Name = dataLakeAccountName
- }
- };
-
- var createResponse = dataLakeStoreManagementClient.DataLakeStoreAccount.Create(resourceGroupName, dataLakeCreateParameters);
- ThrowIfTrue(createResponse.Status != OperationStatus.Succeeded, string.Format("Failed to provision a DataLake Store account in the success state. Actual State: {0}", createResponse.Status));
- var dataLakeAccountSuffix = dataLakeStoreManagementClient.DataLakeStoreAccount.Get(resourceGroupName, dataLakeAccountName).DataLakeStoreAccount.Properties.Endpoint.Replace(dataLakeAccountName + ".", "");
- ThrowIfTrue(string.IsNullOrEmpty(dataLakeAccountSuffix), "dataLakeStoreManagementClient.DataLakeStoreAccount.Create did not properly populate the suffix property");
- return dataLakeAccountSuffix;
-
- }
-
public string TryCreateStorageAccount(string resourceGroupName, string storageAccountName, string label, string description, string location, out string storageAccountSuffix)
{
var stoInput = new StorageAccountCreateParameters
@@ -242,16 +293,15 @@ public string TryCreateStorageAccount(string resourceGroupName, string storageAc
AccountType = AccountType.StandardGRS
};
-
// retrieve the storage account
- storageManagementClient.StorageAccounts.Create(resourceGroupName, storageAccountName, stoInput);
+ StorageManagementClient.StorageAccounts.Create(resourceGroupName, storageAccountName, stoInput);
// retrieve the storage account primary access key
- var accessKey = storageManagementClient.StorageAccounts.ListKeys(resourceGroupName, storageAccountName).StorageAccountKeys.Key1;
+ var accessKey = StorageManagementClient.StorageAccounts.ListKeys(resourceGroupName, storageAccountName).StorageAccountKeys.Key1;
ThrowIfTrue(string.IsNullOrEmpty(accessKey), "storageManagementClient.StorageAccounts.ListKeys returned null.");
// set the storage account suffix
- var getResponse = storageManagementClient.StorageAccounts.GetProperties(resourceGroupName, storageAccountName);
+ var getResponse = StorageManagementClient.StorageAccounts.GetProperties(resourceGroupName, storageAccountName);
storageAccountSuffix = getResponse.StorageAccount.PrimaryEndpoints.Blob.ToString();
storageAccountSuffix = storageAccountSuffix.Replace("https://", "").TrimEnd('/');
storageAccountSuffix = storageAccountSuffix.Replace(storageAccountName, "").TrimStart('.');
@@ -267,8 +317,5 @@ private void ThrowIfTrue(bool condition, string message)
}
}
#endregion
- public void Dispose()
- {
- }
}
}
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/Common.ps1 b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/Common.ps1
new file mode 100644
index 000000000000..f6900194e70d
--- /dev/null
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/ScenarioTests/Common.ps1
@@ -0,0 +1,67 @@
+# ----------------------------------------------------------------------------------
+#
+# 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.
+# ----------------------------------------------------------------------------------
+
+<#
+.SYNOPSIS
+Gets a Data Lake Store account name to use for testing
+#>
+function Get-DataLakeStoreAccountName
+{
+ return getAssetName
+}
+
+<#
+.SYNOPSIS
+Gets a Data Lake Analytics account name to use for testing
+#>
+function Get-DataLakeAnalyticsAccountName
+{
+ return getAssetName
+}
+
+<#
+.SYNOPSIS
+Gets a resource group name for testing.
+#>
+function Get-ResourceGroupName
+{
+ return getAssetName
+}
+
+<#
+.SYNOPSIS
+Executes a cmdlet and enables ignoring of errors if desired
+NOTE: this only catches errors that are thrown. If the command calls to Write-Error
+the user must specify the errorAction to be silent or store the record in an error variable.
+#>
+function Invoke-HandledCmdlet
+{
+ param
+ (
+ [ScriptBlock] $Command,
+ [switch] $IgnoreFailures
+ )
+
+ try
+ {
+ &$Command
+ }
+ catch
+ {
+ if(!$IgnoreFailures)
+ {
+ throw;
+ }
+ }
+}
\ No newline at end of file
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 2d331f55bae0..81cf6dd71b57 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
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/register?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/register?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -10,7 +10,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1013"
@@ -25,16 +25,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-request-id": [
- "d6508220-f7c4-4d14-9fa2-eb63a2487fe0"
+ "140b1dac-9c60-485d-ac6f-81b3246ec92a"
],
"x-ms-correlation-request-id": [
- "d6508220-f7c4-4d14-9fa2-eb63a2487fe0"
+ "140b1dac-9c60-485d-ac6f-81b3246ec92a"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000317Z:d6508220-f7c4-4d14-9fa2-eb63a2487fe0"
+ "WESTUS:20160226T021151Z:140b1dac-9c60-485d-ac6f-81b3246ec92a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,14 +43,14 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:03:16 GMT"
+ "Fri, 26 Feb 2016 02:11:50 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -58,7 +58,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1013"
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14991"
],
"x-ms-request-id": [
- "c3fec2d2-2173-4214-b4b4-d51a15d0eeb7"
+ "de01fbe1-71a3-4e40-97a4-6d7ff786d395"
],
"x-ms-correlation-request-id": [
- "c3fec2d2-2173-4214-b4b4-d51a15d0eeb7"
+ "de01fbe1-71a3-4e40-97a4-6d7ff786d395"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000317Z:c3fec2d2-2173-4214-b4b4-d51a15d0eeb7"
+ "WESTUS:20160226T021151Z:de01fbe1-71a3-4e40-97a4-6d7ff786d395"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,14 +91,14 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:03:16 GMT"
+ "Fri, 26 Feb 2016 02:11:50 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/abarg19412?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTk0MTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/abarg11923?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTE5MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
@@ -112,7 +112,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412\",\r\n \"name\": \"abarg19412\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/abarg11923\",\r\n \"name\": \"abarg11923\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"174"
@@ -127,16 +127,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1196"
],
"x-ms-request-id": [
- "abd4dc35-224c-450d-9b74-7b35d4e5582b"
+ "e21f5fb7-1f57-42c0-bd22-dd764cbe9ed7"
],
"x-ms-correlation-request-id": [
- "abd4dc35-224c-450d-9b74-7b35d4e5582b"
+ "e21f5fb7-1f57-42c0-bd22-dd764cbe9ed7"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000318Z:abd4dc35-224c-450d-9b74-7b35d4e5582b"
+ "WESTUS:20160226T021153Z:e21f5fb7-1f57-42c0-bd22-dd764cbe9ed7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,14 +145,14 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:03:17 GMT"
+ "Fri, 26 Feb 2016 02:11:52 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/abarg19412?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTk0MTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/abarg11923?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTE5MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -160,7 +160,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412\",\r\n \"name\": \"abarg19412\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/abarg11923\",\r\n \"name\": \"abarg11923\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"174"
@@ -175,16 +175,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14990"
],
"x-ms-request-id": [
- "56c1714d-c37e-4649-9921-17a5d486ffca"
+ "fde92631-ac9f-42d0-ae9f-4f2d10d992de"
],
"x-ms-correlation-request-id": [
- "56c1714d-c37e-4649-9921-17a5d486ffca"
+ "fde92631-ac9f-42d0-ae9f-4f2d10d992de"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000318Z:56c1714d-c37e-4649-9921-17a5d486ffca"
+ "WESTUS:20160226T021153Z:fde92631-ac9f-42d0-ae9f-4f2d10d992de"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,44 +193,34 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:03:17 GMT"
+ "Fri, 26 Feb 2016 02:11:52 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeStore/accounts/datalake016297?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDE2Mjk3P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/abarg11923/providers/Microsoft.Storage/storageAccounts/azureblob015158?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2FiYXJnMTE5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTUxNTg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"datalake016297\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Content-Length": [
- "60"
+ "91"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "x-ms-client-request-id": [
+ "75b975fb-7811-43ae-b3b3-09fc58a34425"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
- ],
- "x-ms-client-request-id": [
- "2a2f65c0-88a8-4480-8a94-0f95aa44bfa6"
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeStore/accounts/datalake016297\",\r\n \"name\": \"datalake016297\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "364"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -239,64 +229,114 @@
"no-cache"
],
"Retry-After": [
- "10"
+ "25"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/809c44e3-946a-4b17-b747-70e108aebd800?api-version=2015-10-01-preview&expanded=true"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-request-id": [
- "29152731-7f75-4e6e-a4ca-9a8cdef39f0d"
+ "dbf5c7e8-5a3c-4b5b-a2f6-77f8b8a75455"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/operations/e32dc405-a273-40fd-a68c-83fd83234f8f?monitor=true&api-version=2015-06-15"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-correlation-request-id": [
- "fb154581-074c-4e01-b3dc-4acc19610a07"
+ "dbf5c7e8-5a3c-4b5b-a2f6-77f8b8a75455"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000320Z:fb154581-074c-4e01-b3dc-4acc19610a07"
+ "WESTUS:20160226T021155Z:dbf5c7e8-5a3c-4b5b-a2f6-77f8b8a75455"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Cache-Control": [
+ "Date": [
+ "Fri, 26 Feb 2016 02:11:54 GMT"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/operations/e32dc405-a273-40fd-a68c-83fd83234f8f?monitor=true&api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2UzMmRjNDA1LWEyNzMtNDBmZC1hNjhjLTgzZmQ4MzIzNGY4Zj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dc0b3e85-cdf3-4ecb-a302-8c44c4c27f82"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
"no-cache"
],
- "Date": [
- "Sat, 07 Nov 2015 00:03:19 GMT"
+ "Retry-After": [
+ "25"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "3532f7b7-9b8d-4527-9c5f-fa10ef7cbbe6"
+ ],
+ "Cache-Control": [
+ "no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/abarg19412/providers/Microsoft.DataLakeStore/accounts/datalake016297/operationresults/0?api-version=2015-10-01-preview"
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/operations/e32dc405-a273-40fd-a68c-83fd83234f8f?monitor=true&api-version=2015-06-15"
],
"Server": [
- "Microsoft-IIS/8.5"
+ "Microsoft-Azure-Storage-Resource-Provider/1.0",
+ "Microsoft-HTTPAPI/2.0"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "x-ms-correlation-request-id": [
+ "3532f7b7-9b8d-4527-9c5f-fa10ef7cbbe6"
],
- "X-Powered-By": [
- "ASP.NET"
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T021155Z:3532f7b7-9b8d-4527-9c5f-fa10ef7cbbe6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:11:55 GMT"
]
},
- "StatusCode": 201
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/809c44e3-946a-4b17-b747-70e108aebd800?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzgwOWM0NGUzLTk0NmEtNGIxNy1iNzQ3LTcwZTEwOGFlYmQ4MDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/operations/e32dc405-a273-40fd-a68c-83fd83234f8f?monitor=true&api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2UzMmRjNDA1LWEyNzMtNDBmZC1hNjhjLTgzZmQ4MzIzNGY4Zj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "96f5800d-217e-4393-a25c-446ace9c5663"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "91"
],
"Content-Type": [
"application/json"
@@ -308,55 +348,50 @@
"no-cache"
],
"x-ms-request-id": [
- "8e280eda-648e-48ff-a459-b63bf07e62e6"
+ "0a86bf00-e5b3-4e40-a548-d9e91250a61e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14998"
],
"x-ms-correlation-request-id": [
- "48701a49-caf8-4cda-8d6f-a087d801304f"
+ "0a86bf00-e5b3-4e40-a548-d9e91250a61e"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000320Z:48701a49-caf8-4cda-8d6f-a087d801304f"
+ "WESTUS:20160226T021220Z:0a86bf00-e5b3-4e40-a548-d9e91250a61e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Cache-Control": [
- "no-cache"
- ],
"Date": [
- "Sat, 07 Nov 2015 00:03:19 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:12:20 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/809c44e3-946a-4b17-b747-70e108aebd800?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzgwOWM0NGUzLTk0NmEtNGIxNy1iNzQ3LTcwZTEwOGFlYmQ4MDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/abarg11923/providers/Microsoft.Storage/storageAccounts/azureblob015158/listKeys?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2FiYXJnMTE5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTUxNTgvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "a8359d67-89ea-4e16-a8e4-d5231f1b17cf"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"key1\": \"RRIuary97BqSnJJFAgBes4FBWII+V9RUU0/BxSisVgMcDBcCLOFQeMUXDAeHgYqUmGHewVMsHD1dU/1w49rwTg==\",\r\n \"key2\": \"i3msnpwpTOEkqmDLmoN8/nTxKkOE6Rvaic1OV9/kaZnn1CwLEbyLHtKyB2eLWKQCvUszfyruLAJynx+VVfebiQ==\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "198"
],
"Content-Type": [
"application/json"
@@ -368,55 +403,50 @@
"no-cache"
],
"x-ms-request-id": [
- "b0eb6aa4-d94c-44d0-a844-1441c48dc1f0"
+ "7462470a-002e-4345-ab0e-c9de0db83440"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
],
"x-ms-correlation-request-id": [
- "bdd4f3f3-16fd-47ba-8d57-e86291ee4ce9"
+ "7462470a-002e-4345-ab0e-c9de0db83440"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000331Z:bdd4f3f3-16fd-47ba-8d57-e86291ee4ce9"
+ "WESTUS:20160226T021220Z:7462470a-002e-4345-ab0e-c9de0db83440"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Cache-Control": [
- "no-cache"
- ],
"Date": [
- "Sat, 07 Nov 2015 00:03:30 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:12:20 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/809c44e3-946a-4b17-b747-70e108aebd800?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzgwOWM0NGUzLTk0NmEtNGIxNy1iNzQ3LTcwZTEwOGFlYmQ4MDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/abarg11923/providers/Microsoft.Storage/storageAccounts/azureblob015158?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2FiYXJnMTE5MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTUxNTg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "2d2c226c-c459-4a29-b9b0-9a8b3ae8b365"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/abarg11923/providers/Microsoft.Storage/storageAccounts/azureblob015158\",\r\n \"location\": \"eastus2\",\r\n \"name\": \"azureblob015158\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2016-02-26T02:11:54.3973176Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://azureblob015158.blob.core.windows.net/\",\r\n \"file\": \"https://azureblob015158.file.core.windows.net/\",\r\n \"queue\": \"https://azureblob015158.queue.core.windows.net/\",\r\n \"table\": \"https://azureblob015158.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}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "739"
],
"Content-Type": [
"application/json"
@@ -428,58 +458,50 @@
"no-cache"
],
"x-ms-request-id": [
- "7de68da9-c7ea-4920-a1b5-f138dcbe9b60"
+ "00d2d8fa-4e78-45d9-b62e-674c4c76211e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14997"
],
"x-ms-correlation-request-id": [
- "1e726fc8-4120-4444-a283-b21172a6ad17"
+ "00d2d8fa-4e78-45d9-b62e-674c4c76211e"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000346Z:1e726fc8-4120-4444-a283-b21172a6ad17"
+ "WESTUS:20160226T021221Z:00d2d8fa-4e78-45d9-b62e-674c4c76211e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Cache-Control": [
- "no-cache"
- ],
"Date": [
- "Sat, 07 Nov 2015 00:03:45 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:12:20 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/809c44e3-946a-4b17-b747-70e108aebd800?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzgwOWM0NGUzLTk0NmEtNGIxNy1iNzQ3LTcwZTEwOGFlYmQ4MDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk8081?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwODE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "22"
+ "102"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -487,17 +509,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "abbbea65-b665-4c2c-a8db-4f21dd5f0f01"
+ "x-ms-failure-cause": [
+ "gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14989"
+ ],
+ "x-ms-request-id": [
+ "0746ba24-d911-44c4-944a-bab42de48647"
],
"x-ms-correlation-request-id": [
- "03ef397a-dee4-48ea-8fe9-3c60bb20046b"
+ "0746ba24-d911-44c4-944a-bab42de48647"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000402Z:03ef397a-dee4-48ea-8fe9-3c60bb20046b"
+ "WESTUS:20160226T021226Z:0746ba24-d911-44c4-944a-bab42de48647"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -506,44 +531,25 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:04:01 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:12:25 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeStore/accounts/datalake016297?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDE2Mjk3P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk8081?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwODE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"datalake016297.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-07T00:03:20.5465309Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:03:20.5465309Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeStore/accounts/datalake016297\",\r\n \"name\": \"datalake016297\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "456"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -551,17 +557,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "2a4ef8be-89f6-4baf-8fe6-4b8e085711da"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "5ede6886-677d-4efd-9c16-fd807a85fb82"
],
"x-ms-correlation-request-id": [
- "32e29036-1a4f-4b83-b374-ab05d4ca057b"
+ "5ede6886-677d-4efd-9c16-fd807a85fb82"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000402Z:32e29036-1a4f-4b83-b374-ab05d4ca057b"
+ "CENTRALUS:20160226T021422Z:5ede6886-677d-4efd-9c16-fd807a85fb82"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -570,53 +576,34 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:04:01 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:14:22 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 204
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeStore/accounts/datalake022850?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDIyODUwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk8081?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwODE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"datalake022850\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "60"
- ],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "31"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
- ],
- "x-ms-client-request-id": [
- "17f88989-8539-460d-9579-6a7b54162e98"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeStore/accounts/datalake022850\",\r\n \"name\": \"datalake022850\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081\",\r\n \"name\": \"onesdk8081\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "364"
+ "174"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -624,23 +611,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/691b31b1-a71e-41e8-8f5b-5ac56afb0c680?api-version=2015-10-01-preview&expanded=true"
- ],
- "x-ms-request-id": [
- "21fed599-5d99-4c47-a3fb-6311929169a0"
- ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
+ "x-ms-request-id": [
+ "2087baef-c763-4c8a-aa39-644900a41c28"
+ ],
"x-ms-correlation-request-id": [
- "09494ac3-4fa2-4282-8d18-b6b382122e97"
+ "2087baef-c763-4c8a-aa39-644900a41c28"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000403Z:09494ac3-4fa2-4282-8d18-b6b382122e97"
+ "WESTUS:20160226T021226Z:2087baef-c763-4c8a-aa39-644900a41c28"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -649,43 +630,28 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:04:02 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/abarg19412/providers/Microsoft.DataLakeStore/accounts/datalake022850/operationresults/0?api-version=2015-10-01-preview"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:12:26 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/691b31b1-a71e-41e8-8f5b-5ac56afb0c680?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzY5MWIzMWIxLWE3MWUtNDFlOC04ZjViLTVhYzU2YWZiMGM2ODA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "12"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -693,17 +659,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "51eef226-72bf-4c1f-a16e-b796478e670e"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14988"
+ ],
+ "x-ms-request-id": [
+ "b0ea5f50-0ada-4db1-9ace-23ae75cebf7f"
],
"x-ms-correlation-request-id": [
- "d8720f27-1793-495c-8f37-0131f034622b"
+ "b0ea5f50-0ada-4db1-9ace-23ae75cebf7f"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000403Z:d8720f27-1793-495c-8f37-0131f034622b"
+ "WESTUS:20160226T021226Z:b0ea5f50-0ada-4db1-9ace-23ae75cebf7f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -712,40 +678,34 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:04:03 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:12:26 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/691b31b1-a71e-41e8-8f5b-5ac56afb0c680?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzY5MWIzMWIxLWE3MWUtNDFlOC04ZjViLTVhYzU2YWZiMGM2ODA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk4893?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazQ4OTM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "640050ca-29b8-4561-825e-091ab7f563be"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk4893' under resource group 'onesdk8081' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "157"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -753,17 +713,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "88a6a78f-475c-41d9-92e2-48ebf22d8d1b"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "x-ms-request-id": [
+ "c5a37504-0a42-4b7b-83a5-7787f84739c6"
],
"x-ms-correlation-request-id": [
- "82a900a2-9cfc-4260-9cbd-4fbcad76e671"
+ "c5a37504-0a42-4b7b-83a5-7787f84739c6"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000414Z:82a900a2-9cfc-4260-9cbd-4fbcad76e671"
+ "WESTUS:20160226T021227Z:c5a37504-0a42-4b7b-83a5-7787f84739c6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -772,40 +732,34 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:04:13 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:12:27 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/691b31b1-a71e-41e8-8f5b-5ac56afb0c680?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzY5MWIzMWIxLWE3MWUtNDFlOC04ZjViLTVhYzU2YWZiMGM2ODA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk4893?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazQ4OTM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "170b0784-f87c-49ff-a34f-52460a2a6231"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk4893' under resource group 'onesdk8081' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "157"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -813,17 +767,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "42663582-5ccc-41ec-85c9-5a17d51dcdec"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "x-ms-request-id": [
+ "77fbf964-35a0-44f1-948d-c1593e65b203"
],
"x-ms-correlation-request-id": [
- "5fc68923-ab76-44a6-b7bb-c8fedd89bd89"
+ "77fbf964-35a0-44f1-948d-c1593e65b203"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000429Z:5fc68923-ab76-44a6-b7bb-c8fedd89bd89"
+ "WESTUS:20160226T021227Z:77fbf964-35a0-44f1-948d-c1593e65b203"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -832,37 +786,25 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:04:29 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:12:27 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/691b31b1-a71e-41e8-8f5b-5ac56afb0c680?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzY5MWIzMWIxLWE3MWUtNDFlOC04ZjViLTVhYzU2YWZiMGM2ODA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk4893?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazQ4OTM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk4893.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:12:31.1897286Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:12:31.1897286Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk4893\",\r\n \"name\": \"onesdk4893\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "22"
+ "488"
],
"Content-Type": [
"application/json"
@@ -874,16 +816,16 @@
"no-cache"
],
"x-ms-request-id": [
- "d97a13e0-c77a-45db-82bb-12dc9edc13c9"
+ "07c2e0e5-9dc3-4f7b-b02f-646eea379104"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14996"
],
"x-ms-correlation-request-id": [
- "e5a2e99e-f871-4b1f-b6e7-9d629991c50b"
+ "c5e1239b-cb8f-4c72-ada2-33fc4ad63df5"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000445Z:e5a2e99e-f871-4b1f-b6e7-9d629991c50b"
+ "WESTUS:20160226T021300Z:c5e1239b-cb8f-4c72-ada2-33fc4ad63df5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -892,7 +834,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:04:44 GMT"
+ "Fri, 26 Feb 2016 02:12:59 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -907,26 +849,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeStore/accounts/datalake022850?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDIyODUwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk4893?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazQ4OTM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "x-ms-client-request-id": [
+ "2ed47176-c8d9-4852-86df-ba6de31b4dc4"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"datalake022850.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-07T00:04:03.7682449Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:04:03.7682449Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeStore/accounts/datalake022850\",\r\n \"name\": \"datalake022850\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk4893.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:12:31.1897286Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:12:31.1897286Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk4893\",\r\n \"name\": \"onesdk4893\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "456"
+ "488"
],
"Content-Type": [
"application/json"
@@ -938,16 +879,16 @@
"no-cache"
],
"x-ms-request-id": [
- "1bb96904-c0f7-4300-a409-64736c425b0b"
+ "df572296-713c-44b9-84dd-269f0765c811"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14991"
],
"x-ms-correlation-request-id": [
- "adfc17cc-13e6-4501-8875-5dc9f9fb40a8"
+ "f9b33ea7-e447-44d6-873b-cb72e8c7ad85"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000445Z:adfc17cc-13e6-4501-8875-5dc9f9fb40a8"
+ "WESTUS:20160226T021419Z:f9b33ea7-e447-44d6-873b-cb72e8c7ad85"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -956,7 +897,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:04:44 GMT"
+ "Fri, 26 Feb 2016 02:14:19 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -971,28 +912,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.Storage/storageAccounts/azureblob013897?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTM4OTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk4893?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazQ4OTM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"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\": \"East US 2\",\r\n \"name\": \"onesdk4893\",\r\n \"tags\": {},\r\n \"properties\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Content-Length": [
- "91"
+ "92"
],
"x-ms-client-request-id": [
- "1ea4d5bb-37df-40dd-8243-f9147bec428e"
+ "dcfa0664-9794-4994-ba92-4202b1d50bdb"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk4893\",\r\n \"name\": \"onesdk4893\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "0"
+ "354"
+ ],
+ "Content-Type": [
+ "application/json"
],
"Expires": [
"-1"
@@ -1001,114 +948,61 @@
"no-cache"
],
"Retry-After": [
- "25"
+ "10"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/02705338-4798-40ec-98b2-9ee32308c4750?api-version=2015-10-01-preview&expanded=true"
],
"x-ms-request-id": [
- "39ee16ca-3dd8-4837-9609-5523b40ddab0"
- ],
- "Cache-Control": [
- "no-cache"
+ "3151e67a-1bc1-4db7-86a5-aca6d2b28ca3"
],
- "Location": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.Storage/operations/07f1372a-c35e-41ab-8170-dfcd722020d6?monitor=true&api-version=2015-06-15"
- ],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "39ee16ca-3dd8-4837-9609-5523b40ddab0"
+ "4fc4961b-1ca4-43a2-a719-17b9c2e0caf8"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000448Z:39ee16ca-3dd8-4837-9609-5523b40ddab0"
+ "WESTUS:20160226T021229Z:4fc4961b-1ca4-43a2-a719-17b9c2e0caf8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Date": [
- "Sat, 07 Nov 2015 00:04:47 GMT"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.Storage/operations/07f1372a-c35e-41ab-8170-dfcd722020d6?monitor=true&api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzA3ZjEzNzJhLWMzNWUtNDFhYi04MTcwLWRmY2Q3MjIwMjBkNj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "5bcf3c49-8f18-499c-be36-c9c5187c1370"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "25"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14949"
- ],
- "x-ms-request-id": [
- "5c04e978-b9d0-4b94-8bcb-6c67ef35f9b8"
- ],
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 26 Feb 2016 02:12:29 GMT"
+ ],
"Location": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.Storage/operations/07f1372a-c35e-41ab-8170-dfcd722020d6?monitor=true&api-version=2015-06-15"
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk4893/operationresults/0?api-version=2015-10-01-preview"
],
"Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-correlation-request-id": [
- "5c04e978-b9d0-4b94-8bcb-6c67ef35f9b8"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20151107T000448Z:5c04e978-b9d0-4b94-8bcb-6c67ef35f9b8"
+ "Microsoft-IIS/8.5"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "X-AspNet-Version": [
+ "4.0.30319"
],
- "Date": [
- "Sat, 07 Nov 2015 00:04:48 GMT"
+ "X-Powered-By": [
+ "ASP.NET"
]
},
- "StatusCode": 202
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.Storage/operations/07f1372a-c35e-41ab-8170-dfcd722020d6?monitor=true&api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzA3ZjEzNzJhLWMzNWUtNDFhYi04MTcwLWRmY2Q3MjIwMjBkNj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/02705338-4798-40ec-98b2-9ee32308c4750?api-version=2015-10-01-preview&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzAyNzA1MzM4LTQ3OTgtNDBlYy05OGIyLTllZTMyMzA4YzQ3NTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "34402712-0792-404b-bbb4-3a2a7521d0c5"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "91"
+ "22"
],
"Content-Type": [
"application/json"
@@ -1120,167 +1014,58 @@
"no-cache"
],
"x-ms-request-id": [
- "962eb7c5-f286-446c-aeae-f025f88749c9"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
+ "ea38481e-b67f-411e-94c8-78ac9d03e71d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14947"
+ "14997"
],
"x-ms-correlation-request-id": [
- "962eb7c5-f286-446c-aeae-f025f88749c9"
+ "27d8d422-f035-406d-9cd0-30164e7db978"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000513Z:962eb7c5-f286-446c-aeae-f025f88749c9"
+ "WESTUS:20160226T021259Z:27d8d422-f035-406d-9cd0-30164e7db978"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Date": [
- "Sat, 07 Nov 2015 00:05:13 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.Storage/storageAccounts/azureblob013897/listKeys?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTM4OTcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d33ab6f1-cb45-40eb-a89c-d8e93ea3ac2a"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"key1\": \"nBORbguLFyXNi7ITmfJdWVQZ4dkkolmbbmpN//sMG/J7FfKlt+TGBCexho6BpFTPxSdBt0euU1sR5WqDOQAbMg==\",\r\n \"key2\": \"BYtEV/Ui29NBJXh+/PPbaygHTEZd75GfZkYdCkDROc81WM6dgUll0uZapHDtQZV0CAOak0IHh4MnYPe0uJsjVQ==\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "198"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "6ed03a22-a03c-4a86-b188-8d340bb1d484"
- ],
"Cache-Control": [
"no-cache"
],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
- ],
- "x-ms-correlation-request-id": [
- "6ed03a22-a03c-4a86-b188-8d340bb1d484"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20151107T000513Z:6ed03a22-a03c-4a86-b188-8d340bb1d484"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
"Date": [
- "Sat, 07 Nov 2015 00:05:13 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.Storage/storageAccounts/azureblob013897?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTM4OTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1fbd21d5-fb41-41ce-bb58-c545ef6120a1"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.Storage/storageAccounts/azureblob013897\",\r\n \"location\": \"eastus2\",\r\n \"name\": \"azureblob013897\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-11-07T00:04:47.12565Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://azureblob013897.blob.core.windows.net/\",\r\n \"file\": \"https://azureblob013897.file.core.windows.net/\",\r\n \"queue\": \"https://azureblob013897.queue.core.windows.net/\",\r\n \"table\": \"https://azureblob013897.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}",
- "ResponseHeaders": {
- "Content-Length": [
- "739"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "de489b7e-d1c0-4600-b872-45634271e649"
- ],
- "Cache-Control": [
- "no-cache"
+ "Fri, 26 Feb 2016 02:12:59 GMT"
],
"Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14946"
- ],
- "x-ms-correlation-request-id": [
- "de489b7e-d1c0-4600-b872-45634271e649"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20151107T000513Z:de489b7e-d1c0-4600-b872-45634271e649"
+ "Microsoft-IIS/8.5"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "X-AspNet-Version": [
+ "4.0.30319"
],
- "Date": [
- "Sat, 07 Nov 2015 00:05:13 GMT"
+ "X-Powered-By": [
+ "ASP.NET"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk1411?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazE0MTE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "07430070-cd8d-4cb3-9664-405942a57ff0"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba13533' under resource group 'abarg19412' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk1411' under resource group 'onesdk8081' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "163"
+ "157"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1295,13 +1080,13 @@
"gateway"
],
"x-ms-request-id": [
- "97116cfd-5c14-4b68-bd64-ca536b6a36e3"
+ "7ba5cd0a-13eb-4fcb-b254-0abe209a5743"
],
"x-ms-correlation-request-id": [
- "97116cfd-5c14-4b68-bd64-ca536b6a36e3"
+ "7ba5cd0a-13eb-4fcb-b254-0abe209a5743"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000525Z:97116cfd-5c14-4b68-bd64-ca536b6a36e3"
+ "WESTUS:20160226T021300Z:7ba5cd0a-13eb-4fcb-b254-0abe209a5743"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1310,35 +1095,31 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:05:25 GMT"
+ "Fri, 26 Feb 2016 02:12:59 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk1411?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazE0MTE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "b50e3548-4f86-4e6c-b2a9-bc083bc11c46"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba13533' under resource group 'abarg19412' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk1411' under resource group 'onesdk8081' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "163"
+ "157"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1353,13 +1134,13 @@
"gateway"
],
"x-ms-request-id": [
- "88e03eea-1e18-40d9-89de-38c790d1c70f"
+ "88dcc0c5-aac3-4311-bdef-935963ce35e8"
],
"x-ms-correlation-request-id": [
- "88e03eea-1e18-40d9-89de-38c790d1c70f"
+ "88dcc0c5-aac3-4311-bdef-935963ce35e8"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000525Z:88e03eea-1e18-40d9-89de-38c790d1c70f"
+ "WESTUS:20160226T021300Z:88dcc0c5-aac3-4311-bdef-935963ce35e8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1368,35 +1149,25 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:05:25 GMT"
+ "Fri, 26 Feb 2016 02:12:59 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk1411?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazE0MTE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016297\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"datalake016297\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:05:27.8167278Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk1411.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:13:03.8240125Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:13:03.8240125Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk1411\",\r\n \"name\": \"onesdk1411\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "673"
+ "488"
],
"Content-Type": [
"application/json"
@@ -1408,16 +1179,16 @@
"no-cache"
],
"x-ms-request-id": [
- "bded4245-4223-499d-bcab-4f71acb8f431"
+ "71692215-b632-49c3-9d4b-ff9991adc8fa"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14965"
+ "14992"
],
"x-ms-correlation-request-id": [
- "34c26d02-7ddd-4ec7-ab8a-74fb59d1949a"
+ "81bf2340-0a85-4d51-bd8a-d37d554ef2c7"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000609Z:34c26d02-7ddd-4ec7-ab8a-74fb59d1949a"
+ "WESTUS:20160226T021332Z:81bf2340-0a85-4d51-bd8a-d37d554ef2c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1426,7 +1197,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:09 GMT"
+ "Fri, 26 Feb 2016 02:13:32 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1441,29 +1212,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk1411?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazE0MTE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "277a72c8-2759-4891-ac32-8febfb5a864a"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016297\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"datalake016297\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:05:27.8167278Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk1411.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:13:03.8240125Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:13:03.8240125Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk1411\",\r\n \"name\": \"onesdk1411\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "673"
+ "488"
],
"Content-Type": [
"application/json"
@@ -1475,16 +1242,16 @@
"no-cache"
],
"x-ms-request-id": [
- "e9e0c0ec-e8eb-4a00-adff-b59e43a8177a"
+ "550ba8d5-8220-486c-9d1e-9743abe17dd7"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14964"
+ "14990"
],
"x-ms-correlation-request-id": [
- "d3cc5295-322c-4fa2-9a80-5ea9c52c87c4"
+ "dd8a3fd5-712e-41c0-8c76-aca91fe199ae"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000609Z:d3cc5295-322c-4fa2-9a80-5ea9c52c87c4"
+ "WESTUS:20160226T021421Z:dd8a3fd5-712e-41c0-8c76-aca91fe199ae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1493,7 +1260,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:09 GMT"
+ "Fri, 26 Feb 2016 02:14:20 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1508,29 +1275,31 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk1411?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazE0MTE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"onesdk1411\",\r\n \"tags\": {},\r\n \"properties\": {}\r\n}",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "92"
+ ],
+ "x-ms-client-request-id": [
+ "d2de6b2d-499c-4968-ab92-e2c2c655a73b"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016297\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"datalake016297\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:05:27.8167278Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk1411\",\r\n \"name\": \"onesdk1411\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "673"
+ "354"
],
"Content-Type": [
"application/json"
@@ -1541,17 +1310,23 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b2fdda74-41fd-4402-81e8-e6ffeb2c3f0f0?api-version=2015-10-01-preview&expanded=true"
+ ],
"x-ms-request-id": [
- "54ad2f49-3f25-4921-8301-dfec651d3d36"
+ "ec01e700-0cc4-4b89-a5a3-0de78aece849"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14963"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
],
"x-ms-correlation-request-id": [
- "557f63d7-da79-4568-95b9-8dc440461cad"
+ "2e76cf24-d5fc-43da-a768-1d5839b368ea"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000610Z:557f63d7-da79-4568-95b9-8dc440461cad"
+ "WESTUS:20160226T021302Z:2e76cf24-d5fc-43da-a768-1d5839b368ea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1560,7 +1335,10 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:09 GMT"
+ "Fri, 26 Feb 2016 02:13:01 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk1411/operationresults/0?api-version=2015-10-01-preview"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1572,32 +1350,22 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b2fdda74-41fd-4402-81e8-e6ffeb2c3f0f0?api-version=2015-10-01-preview&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2IyZmRkYTc0LTQxZmQtNDQwMi04MWU4LWU2ZmZlYjJjM2YwZjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016297\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"datalake016297\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "694"
+ "22"
],
"Content-Type": [
"application/json"
@@ -1609,16 +1377,16 @@
"no-cache"
],
"x-ms-request-id": [
- "e897e452-5369-4965-bbcd-388d5951c2af"
+ "cd1d3dec-5227-427c-88fd-edbbfa2d9861"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14961"
+ "14993"
],
"x-ms-correlation-request-id": [
- "b582e11a-0283-41c5-8a38-5abf9639b149"
+ "10d21ad8-daa9-4d45-ab7b-d69c666b7470"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000617Z:b582e11a-0283-41c5-8a38-5abf9639b149"
+ "WESTUS:20160226T021332Z:10d21ad8-daa9-4d45-ab7b-d69c666b7470"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1627,7 +1395,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:16 GMT"
+ "Fri, 26 Feb 2016 02:13:32 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1642,32 +1410,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "78a07c99-6da1-41cd-8272-abc698b8c4c0"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016297\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"datalake016297\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"datalake022850\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/onesdk8530' under resource group 'onesdk8081' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "769"
+ "161"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1675,17 +1439,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "5b178a87-1135-43b3-9643-d73a4e2d9622"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14956"
+ "x-ms-request-id": [
+ "b271b8da-518e-4f2f-9458-6f8bb3e56436"
],
"x-ms-correlation-request-id": [
- "38767ed2-401c-4a0f-bade-8091102772f6"
+ "b271b8da-518e-4f2f-9458-6f8bb3e56436"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000618Z:38767ed2-401c-4a0f-bade-8091102772f6"
+ "CENTRALUS:20160226T021333Z:b271b8da-518e-4f2f-9458-6f8bb3e56436"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1694,47 +1458,34 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:18 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:13:33 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "69b6da5e-2c0e-4fae-a266-d412c25bf6cf"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016297\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"datalake016297\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/onesdk8530' under resource group 'onesdk8081' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "694"
+ "161"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1742,17 +1493,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "f875856d-5812-4e6d-8644-c99d6f58ba44"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "x-ms-request-id": [
+ "f3289d61-4088-4605-ab4a-6e1232503bb4"
],
"x-ms-correlation-request-id": [
- "fa0fddac-b451-4571-bd4e-1a31911f956c"
+ "f3289d61-4088-4605-ab4a-6e1232503bb4"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000619Z:fa0fddac-b451-4571-bd4e-1a31911f956c"
+ "CENTRALUS:20160226T021333Z:f3289d61-4088-4605-ab4a-6e1232503bb4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1761,44 +1512,25 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:18 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:13:33 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016297\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"datalake016297\"\r\n }\r\n ],\r\n \"storageAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"name\": \"azureblob013897\"\r\n }\r\n ],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4893\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk4893\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:13:38.3057295Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "763"
+ "659"
],
"Content-Type": [
"application/json"
@@ -1810,16 +1542,16 @@
"no-cache"
],
"x-ms-request-id": [
- "f5451646-dd1e-437e-b570-505ac24e1569"
+ "eb76cb70-314a-451a-a30e-29076ea6f729"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14950"
+ "14996"
],
"x-ms-correlation-request-id": [
- "81dd773e-eef6-4879-82ee-164df1dafa7d"
+ "372ba6cb-ebf9-45ed-8fda-6304ed34776d"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000621Z:81dd773e-eef6-4879-82ee-164df1dafa7d"
+ "CENTRALUS:20160226T021408Z:372ba6cb-ebf9-45ed-8fda-6304ed34776d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1828,7 +1560,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:20 GMT"
+ "Fri, 26 Feb 2016 02:14:08 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1843,29 +1575,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "87add664-920d-435e-b404-413fa22b855d"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016297\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"datalake016297\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4893\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk4893\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:13:38.3057295Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "694"
+ "659"
],
"Content-Type": [
"application/json"
@@ -1877,16 +1605,16 @@
"no-cache"
],
"x-ms-request-id": [
- "a2a6f348-94cb-45fc-a926-211f4319dee4"
+ "8b1dd877-4aea-4dbb-80b4-c2e6b8063207"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14947"
+ "14995"
],
"x-ms-correlation-request-id": [
- "555c0df5-3fd8-4475-9292-8915e171275c"
+ "43d997fe-5d0f-49e1-814a-98d08f772c4c"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000621Z:555c0df5-3fd8-4475-9292-8915e171275c"
+ "CENTRALUS:20160226T021408Z:43d997fe-5d0f-49e1-814a-98d08f772c4c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1895,7 +1623,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:20 GMT"
+ "Fri, 26 Feb 2016 02:14:08 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1910,32 +1638,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "4eb2ce03-aeb8-40bc-ba65-8ac6b2c9e0f0"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba13533' under resource group 'abarg19412' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4893\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk4893\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:13:38.3057295Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "163"
+ "659"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -1943,17 +1667,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
- ],
"x-ms-request-id": [
- "d4c816bd-e148-49f4-a117-b576619246d3"
+ "b8c7fb25-9b38-4bf8-ab88-fbdd166dc15b"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
],
"x-ms-correlation-request-id": [
- "d4c816bd-e148-49f4-a117-b576619246d3"
+ "c4c970dc-6062-4e6a-a98e-2bf48e789e83"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000623Z:d4c816bd-e148-49f4-a117-b576619246d3"
+ "CENTRALUS:20160226T021409Z:c4c970dc-6062-4e6a-a98e-2bf48e789e83"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1962,37 +1686,40 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:22 GMT"
+ "Fri, 26 Feb 2016 02:14:08 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"testaba13533\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016297\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"datalake016297\"\r\n }\r\n ],\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "335"
- ],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
- ],
"x-ms-client-request-id": [
- "95eeddc7-5bb6-420c-8f7c-7ec3ec08a2a4"
+ "08bdfec7-6dc9-4bae-aa8b-b498efb36156"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016297\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"datalake016297\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4893\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk1411\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk4893\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "499"
+ "752"
],
"Content-Type": [
"application/json"
@@ -2003,23 +1730,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/78cb5258-3aca-41be-8f3b-20ab5893c82b0?api-version=2015-10-01-preview&expanded=true"
- ],
"x-ms-request-id": [
- "03b73271-c2e3-4ad6-970a-d9062e4a16fd"
+ "a6fb3fc3-07b6-4eb0-962a-4fae32b0f8d8"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14989"
],
"x-ms-correlation-request-id": [
- "8bca8dba-4bd3-4b19-b119-b306e05398c1"
+ "3e5f2f89-b03e-4073-9856-6ac66f3f376a"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000527Z:8bca8dba-4bd3-4b19-b119-b306e05398c1"
+ "CENTRALUS:20160226T021413Z:3e5f2f89-b03e-4073-9856-6ac66f3f376a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2028,10 +1749,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:05:27 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533/operationresults/0?api-version=2015-10-01-preview"
+ "Fri, 26 Feb 2016 02:14:12 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2043,25 +1761,28 @@
"ASP.NET"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/78cb5258-3aca-41be-8f3b-20ab5893c82b0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83OGNiNTI1OC0zYWNhLTQxYmUtOGYzYi0yMGFiNTg5M2M4MmIwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "382955ab-ce6c-409c-a811-46c1a69885f6"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4893\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk4893\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "681"
],
"Content-Type": [
"application/json"
@@ -2073,16 +1794,16 @@
"no-cache"
],
"x-ms-request-id": [
- "b6441a56-6d86-4b48-a241-6d7e071e673d"
+ "7d19a242-b50f-47d6-88b8-4cfa01fa1360"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14969"
+ "14986"
],
"x-ms-correlation-request-id": [
- "e2310bd8-b4af-4d0d-9c68-fd23c9137bc3"
+ "91f4688c-7ad1-413d-8148-e66e777b9c4a"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000527Z:e2310bd8-b4af-4d0d-9c68-fd23c9137bc3"
+ "CENTRALUS:20160226T021414Z:91f4688c-7ad1-413d-8148-e66e777b9c4a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2091,7 +1812,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:05:27 GMT"
+ "Fri, 26 Feb 2016 02:14:14 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2106,22 +1827,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/78cb5258-3aca-41be-8f3b-20ab5893c82b0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83OGNiNTI1OC0zYWNhLTQxYmUtOGYzYi0yMGFiNTg5M2M4MmIwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "d08747a3-452b-4ae8-89ef-b337ff9e6ea4"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4893\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk4893\"\r\n }\r\n ],\r\n \"storageAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"name\": \"azureblob015158\"\r\n }\r\n ],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "750"
],
"Content-Type": [
"application/json"
@@ -2133,16 +1857,16 @@
"no-cache"
],
"x-ms-request-id": [
- "6e9d9a5d-4a00-4b35-be72-4886c163a6e8"
+ "12283770-1a93-4d0a-a052-1f383fd159fb"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14968"
+ "14983"
],
"x-ms-correlation-request-id": [
- "3e72b803-ab9d-48ed-9fbe-767ac88a2920"
+ "20092591-b92c-4283-b0ad-917c5494ed11"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000538Z:3e72b803-ab9d-48ed-9fbe-767ac88a2920"
+ "CENTRALUS:20160226T021416Z:20092591-b92c-4283-b0ad-917c5494ed11"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2151,7 +1875,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:05:37 GMT"
+ "Fri, 26 Feb 2016 02:14:15 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2166,22 +1890,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/78cb5258-3aca-41be-8f3b-20ab5893c82b0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83OGNiNTI1OC0zYWNhLTQxYmUtOGYzYi0yMGFiNTg5M2M4MmIwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "94396bea-f22a-4563-94fa-a21ae7a3004d"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4893\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk4893\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "681"
],
"Content-Type": [
"application/json"
@@ -2193,16 +1920,16 @@
"no-cache"
],
"x-ms-request-id": [
- "2ea74255-01de-493a-bfef-e06c87c2eccd"
+ "6a2a7afa-8962-4adc-9e49-f837240f825c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14967"
+ "14980"
],
"x-ms-correlation-request-id": [
- "fa368ff9-bd1b-40bb-b61d-a56456562fa3"
+ "4f18df83-8f46-4632-8c41-434d954517c0"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000554Z:fa368ff9-bd1b-40bb-b61d-a56456562fa3"
+ "CENTRALUS:20160226T021416Z:4f18df83-8f46-4632-8c41-434d954517c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2211,7 +1938,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:05:53 GMT"
+ "Fri, 26 Feb 2016 02:14:16 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2226,22 +1953,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/78cb5258-3aca-41be-8f3b-20ab5893c82b0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83OGNiNTI1OC0zYWNhLTQxYmUtOGYzYi0yMGFiNTg5M2M4MmIwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "01e1c21b-3635-43b3-b474-c4dd7d4dfc74"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4893\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk4893\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "22"
+ "681"
],
"Content-Type": [
"application/json"
@@ -2253,16 +1983,16 @@
"no-cache"
],
"x-ms-request-id": [
- "7c0e5f2e-4fd6-4da0-97c5-2545008ff729"
+ "21206606-4683-4f5d-9396-f5d87539e9d9"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14966"
+ "14979"
],
"x-ms-correlation-request-id": [
- "aab88c52-4964-4182-acab-29cf36941866"
+ "2dd08f30-c165-4106-96ca-02d14a15910e"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000609Z:aab88c52-4964-4182-acab-29cf36941866"
+ "CENTRALUS:20160226T021417Z:2dd08f30-c165-4106-96ca-02d14a15910e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2271,7 +2001,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:08 GMT"
+ "Fri, 26 Feb 2016 02:14:16 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2286,41 +2016,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"name\": \"testaba13533\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"properties\": {\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "194"
+ "x-ms-client-request-id": [
+ "4210dbf4-6255-446a-ae84-55fe0a63bc75"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-request-id": [
- "407f18cd-e6c1-4b3a-b0c3-87c75c7613e8"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016297\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"datalake016297\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/onesdk8530' under resource group 'onesdk8081' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "694"
+ "161"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -2328,17 +2045,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "173566db-0273-4d52-adf7-ab2c138c827a"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "x-ms-request-id": [
+ "c828ee64-7b12-46c4-b42b-5d64f78548dd"
],
"x-ms-correlation-request-id": [
- "29bd2a4f-8aec-4d52-9b81-7f902321241c"
+ "c828ee64-7b12-46c4-b42b-5d64f78548dd"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000617Z:29bd2a4f-8aec-4d52-9b81-7f902321241c"
+ "CENTRALUS:20160226T021419Z:c828ee64-7b12-46c4-b42b-5d64f78548dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2347,47 +2064,34 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:16 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:14:18 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "57eb5e63-db99-4dbb-9d1a-105347c4c23f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/onesdk8530' under resource group 'onesdk8081' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "493"
+ "161"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -2395,17 +2099,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "79456971-e787-4a38-9764-da8060be07ca"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14960"
+ "x-ms-request-id": [
+ "6908146b-ba05-4386-9311-d071a7df99db"
],
"x-ms-correlation-request-id": [
- "0abef76d-6299-4313-8892-d36ab136cc13"
+ "6908146b-ba05-4386-9311-d071a7df99db"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000617Z:0abef76d-6299-4313-8892-d36ab136cc13"
+ "CENTRALUS:20160226T021419Z:6908146b-ba05-4386-9311-d071a7df99db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2414,44 +2118,37 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:16 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:14:19 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"onesdk8530\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4893\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"onesdk4893\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "233"
+ ],
+ "x-ms-client-request-id": [
+ "ed663b84-36f7-46c2-bd71-159d1ebc5e3a"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyservicetest.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-21T02:48:35.2085982Z\",\r\n \"lastModifiedTime\": \"2015-10-21T02:48:35.2085982Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/copyservicetest\",\r\n \"name\": \"copyservicetest\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs04a889c02bbf4050884338.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:02:37.4653664Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:02:37.4653664Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs04a889c02bbf4050884338\",\r\n \"name\": \"cs04a889c02bbf4050884338\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs1667ff1b34504973a03335.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-29T19:44:10.8802499Z\",\r\n \"lastModifiedTime\": \"2015-10-29T19:44:10.8802499Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs1667ff1b34504973a03335\",\r\n \"name\": \"cs1667ff1b34504973a03335\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs300c041ebdf84179903fbe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T11:29:07.6089268Z\",\r\n \"lastModifiedTime\": \"2015-10-26T11:29:07.6089268Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs300c041ebdf84179903fbe\",\r\n \"name\": \"cs300c041ebdf84179903fbe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs32a1b3e1b28149279715fe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-30T01:37:59.9077605Z\",\r\n \"lastModifiedTime\": \"2015-10-30T01:37:59.9077605Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs32a1b3e1b28149279715fe\",\r\n \"name\": \"cs32a1b3e1b28149279715fe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs495cce936b3441248d5874.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:35:59.8245136Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:35:59.8245136Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs495cce936b3441248d5874\",\r\n \"name\": \"cs495cce936b3441248d5874\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs63b6b91b670843febc5dbc.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:01:14.5038668Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:01:14.5038668Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs63b6b91b670843febc5dbc\",\r\n \"name\": \"cs63b6b91b670843febc5dbc\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs6b24bd02a80b419b935556.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T12:59:53.3163175Z\",\r\n \"lastModifiedTime\": \"2015-10-26T12:59:53.3163175Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs6b24bd02a80b419b935556\",\r\n \"name\": \"cs6b24bd02a80b419b935556\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs808f2d6d720a4338869cf0.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-27T05:54:39.9811606Z\",\r\n \"lastModifiedTime\": \"2015-10-27T05:54:39.9811606Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs808f2d6d720a4338869cf0\",\r\n \"name\": \"cs808f2d6d720a4338869cf0\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-10-31T00:11:04.712258Z\",\r\n \"lastModifiedTime\": \"2015-10-31T00:11:04.712258Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs90c65bf28c084532877175\",\r\n \"name\": \"cs90c65bf28c084532877175\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"csd30745ad2cec442d89cce7.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-05T20:52:00.4561739Z\",\r\n \"lastModifiedTime\": \"2015-11-05T20:52:00.4561739Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/csd30745ad2cec442d89cce7\",\r\n \"name\": \"csd30745ad2cec442d89cce7\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cse51d17c03242489e915b69.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:39:42.0846481Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:39:42.0846481Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cse51d17c03242489e915b69\",\r\n \"name\": \"cse51d17c03242489e915b69\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyserviceprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-17T12:19:37.5708184Z\",\r\n \"lastModifiedTime\": \"2015-09-17T12:19:37.5708184Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyserviceresourceprod/providers/Microsoft.DataLakeAnalytics/accounts/copyserviceprod\",\r\n \"name\": \"copyserviceprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.DataLakeAnalytics/accounts/testcertmitigation\",\r\n \"name\": \"testcertmitigation\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner1.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:09:24.8601971Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:09:24.8601971Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner1\",\r\n \"name\": \"konaibizarunner1\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner2.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:10:06.4516006Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:10:06.4516006Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner2\",\r\n \"name\": \"konaibizarunner2\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner3.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:11:19.5898309Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:11:19.5898309Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner3\",\r\n \"name\": \"konaibizarunner3\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testkaprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-06-15T06:54:14.7437003Z\",\r\n \"lastModifiedTime\": \"2015-06-16T01:06:04.4937755Z\"\r\n },\r\n \"location\": \"east us 2\",\r\n \"tags\": {\r\n \"owner\": \"jianyw\",\r\n \"description\": \"hello kona\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/konaprodgroup/providers/Microsoft.DataLakeAnalytics/accounts/testkaprod\",\r\n \"name\": \"testkaprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T18:08:11.3054935Z\",\r\n \"lastModifiedTime\": \"2015-11-05T18:08:53.6834244Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba15884/providers/Microsoft.DataLakeAnalytics/accounts/testaba12926\",\r\n \"name\": \"testaba12926\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T17:56:20.2260922Z\",\r\n \"lastModifiedTime\": \"2015-11-05T17:57:02.9507995Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba17200/providers/Microsoft.DataLakeAnalytics/accounts/testaba12021\",\r\n \"name\": \"testaba12021\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4893\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"onesdk4893\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "10198"
+ "453"
],
"Content-Type": [
"application/json"
@@ -2462,17 +2159,23 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/265a8aaa-04d7-49f8-90af-35ff570639620?api-version=2015-10-01-preview&expanded=true"
+ ],
"x-ms-request-id": [
- "4e23dd61-c55e-411f-8727-fe969b76a4cd"
+ "793b6e3d-0dd0-466b-9db9-2929824eac97"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14959"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "256ce140-4e75-4d89-a1f8-91cf7424a9ef"
+ "4843ef8b-5418-4dcb-a27e-91683b8d89f8"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000617Z:256ce140-4e75-4d89-a1f8-91cf7424a9ef"
+ "CENTRALUS:20160226T021338Z:4843ef8b-5418-4dcb-a27e-91683b8d89f8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2481,7 +2184,10 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:16 GMT"
+ "Fri, 26 Feb 2016 02:13:37 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530/operationresults/0?api-version=2015-10-01-preview"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2493,32 +2199,22 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/265a8aaa-04d7-49f8-90af-35ff570639620?api-version=2015-10-01-preview&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8yNjVhOGFhYS0wNGQ3LTQ5ZjgtOTBhZi0zNWZmNTcwNjM5NjIwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyservicetest.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-21T02:48:35.2085982Z\",\r\n \"lastModifiedTime\": \"2015-10-21T02:48:35.2085982Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/copyservicetest\",\r\n \"name\": \"copyservicetest\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs04a889c02bbf4050884338.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:02:37.4653664Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:02:37.4653664Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs04a889c02bbf4050884338\",\r\n \"name\": \"cs04a889c02bbf4050884338\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs1667ff1b34504973a03335.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-29T19:44:10.8802499Z\",\r\n \"lastModifiedTime\": \"2015-10-29T19:44:10.8802499Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs1667ff1b34504973a03335\",\r\n \"name\": \"cs1667ff1b34504973a03335\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs300c041ebdf84179903fbe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T11:29:07.6089268Z\",\r\n \"lastModifiedTime\": \"2015-10-26T11:29:07.6089268Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs300c041ebdf84179903fbe\",\r\n \"name\": \"cs300c041ebdf84179903fbe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs32a1b3e1b28149279715fe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-30T01:37:59.9077605Z\",\r\n \"lastModifiedTime\": \"2015-10-30T01:37:59.9077605Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs32a1b3e1b28149279715fe\",\r\n \"name\": \"cs32a1b3e1b28149279715fe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs495cce936b3441248d5874.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:35:59.8245136Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:35:59.8245136Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs495cce936b3441248d5874\",\r\n \"name\": \"cs495cce936b3441248d5874\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs63b6b91b670843febc5dbc.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:01:14.5038668Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:01:14.5038668Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs63b6b91b670843febc5dbc\",\r\n \"name\": \"cs63b6b91b670843febc5dbc\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs6b24bd02a80b419b935556.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T12:59:53.3163175Z\",\r\n \"lastModifiedTime\": \"2015-10-26T12:59:53.3163175Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs6b24bd02a80b419b935556\",\r\n \"name\": \"cs6b24bd02a80b419b935556\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs808f2d6d720a4338869cf0.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-27T05:54:39.9811606Z\",\r\n \"lastModifiedTime\": \"2015-10-27T05:54:39.9811606Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs808f2d6d720a4338869cf0\",\r\n \"name\": \"cs808f2d6d720a4338869cf0\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-10-31T00:11:04.712258Z\",\r\n \"lastModifiedTime\": \"2015-10-31T00:11:04.712258Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs90c65bf28c084532877175\",\r\n \"name\": \"cs90c65bf28c084532877175\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"csd30745ad2cec442d89cce7.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-05T20:52:00.4561739Z\",\r\n \"lastModifiedTime\": \"2015-11-05T20:52:00.4561739Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/csd30745ad2cec442d89cce7\",\r\n \"name\": \"csd30745ad2cec442d89cce7\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cse51d17c03242489e915b69.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:39:42.0846481Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:39:42.0846481Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cse51d17c03242489e915b69\",\r\n \"name\": \"cse51d17c03242489e915b69\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyserviceprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-17T12:19:37.5708184Z\",\r\n \"lastModifiedTime\": \"2015-09-17T12:19:37.5708184Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyserviceresourceprod/providers/Microsoft.DataLakeAnalytics/accounts/copyserviceprod\",\r\n \"name\": \"copyserviceprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.DataLakeAnalytics/accounts/testcertmitigation\",\r\n \"name\": \"testcertmitigation\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner1.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:09:24.8601971Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:09:24.8601971Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner1\",\r\n \"name\": \"konaibizarunner1\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner2.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:10:06.4516006Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:10:06.4516006Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner2\",\r\n \"name\": \"konaibizarunner2\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner3.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:11:19.5898309Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:11:19.5898309Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner3\",\r\n \"name\": \"konaibizarunner3\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testkaprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-06-15T06:54:14.7437003Z\",\r\n \"lastModifiedTime\": \"2015-06-16T01:06:04.4937755Z\"\r\n },\r\n \"location\": \"east us 2\",\r\n \"tags\": {\r\n \"owner\": \"jianyw\",\r\n \"description\": \"hello kona\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/konaprodgroup/providers/Microsoft.DataLakeAnalytics/accounts/testkaprod\",\r\n \"name\": \"testkaprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T18:08:11.3054935Z\",\r\n \"lastModifiedTime\": \"2015-11-05T18:08:53.6834244Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba15884/providers/Microsoft.DataLakeAnalytics/accounts/testaba12926\",\r\n \"name\": \"testaba12926\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T17:56:20.2260922Z\",\r\n \"lastModifiedTime\": \"2015-11-05T17:57:02.9507995Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba17200/providers/Microsoft.DataLakeAnalytics/accounts/testaba12021\",\r\n \"name\": \"testaba12021\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "10198"
+ "22"
],
"Content-Type": [
"application/json"
@@ -2530,16 +2226,16 @@
"no-cache"
],
"x-ms-request-id": [
- "61b1d8ae-9d4b-4d1a-8709-c143ceed576c"
+ "3083e12f-f56b-4c15-bbeb-30ebb7bbd833"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14958"
+ "14997"
],
"x-ms-correlation-request-id": [
- "9c6ef5dc-7427-4a74-a9a4-664c62ce7b7c"
+ "283c232c-2905-4a6f-bcdd-db6c4233c9f6"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000617Z:9c6ef5dc-7427-4a74-a9a4-664c62ce7b7c"
+ "CENTRALUS:20160226T021408Z:283c232c-2905-4a6f-bcdd-db6c4233c9f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2548,7 +2244,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:17 GMT"
+ "Fri, 26 Feb 2016 02:14:08 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2563,29 +2259,31 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"name\": \"onesdk8530\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"properties\": {}\r\n}",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "97"
+ ],
+ "x-ms-client-request-id": [
+ "1fa7e9fa-76a8-4552-a436-8d394b25a0a7"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyservicetest.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-21T02:48:35.2085982Z\",\r\n \"lastModifiedTime\": \"2015-10-21T02:48:35.2085982Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/copyservicetest\",\r\n \"name\": \"copyservicetest\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs04a889c02bbf4050884338.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:02:37.4653664Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:02:37.4653664Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs04a889c02bbf4050884338\",\r\n \"name\": \"cs04a889c02bbf4050884338\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs1667ff1b34504973a03335.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-29T19:44:10.8802499Z\",\r\n \"lastModifiedTime\": \"2015-10-29T19:44:10.8802499Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs1667ff1b34504973a03335\",\r\n \"name\": \"cs1667ff1b34504973a03335\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs300c041ebdf84179903fbe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T11:29:07.6089268Z\",\r\n \"lastModifiedTime\": \"2015-10-26T11:29:07.6089268Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs300c041ebdf84179903fbe\",\r\n \"name\": \"cs300c041ebdf84179903fbe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs32a1b3e1b28149279715fe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-30T01:37:59.9077605Z\",\r\n \"lastModifiedTime\": \"2015-10-30T01:37:59.9077605Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs32a1b3e1b28149279715fe\",\r\n \"name\": \"cs32a1b3e1b28149279715fe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs495cce936b3441248d5874.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:35:59.8245136Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:35:59.8245136Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs495cce936b3441248d5874\",\r\n \"name\": \"cs495cce936b3441248d5874\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs63b6b91b670843febc5dbc.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:01:14.5038668Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:01:14.5038668Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs63b6b91b670843febc5dbc\",\r\n \"name\": \"cs63b6b91b670843febc5dbc\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs6b24bd02a80b419b935556.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T12:59:53.3163175Z\",\r\n \"lastModifiedTime\": \"2015-10-26T12:59:53.3163175Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs6b24bd02a80b419b935556\",\r\n \"name\": \"cs6b24bd02a80b419b935556\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs808f2d6d720a4338869cf0.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-27T05:54:39.9811606Z\",\r\n \"lastModifiedTime\": \"2015-10-27T05:54:39.9811606Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs808f2d6d720a4338869cf0\",\r\n \"name\": \"cs808f2d6d720a4338869cf0\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-10-31T00:11:04.712258Z\",\r\n \"lastModifiedTime\": \"2015-10-31T00:11:04.712258Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs90c65bf28c084532877175\",\r\n \"name\": \"cs90c65bf28c084532877175\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"csd30745ad2cec442d89cce7.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-05T20:52:00.4561739Z\",\r\n \"lastModifiedTime\": \"2015-11-05T20:52:00.4561739Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/csd30745ad2cec442d89cce7\",\r\n \"name\": \"csd30745ad2cec442d89cce7\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cse51d17c03242489e915b69.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:39:42.0846481Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:39:42.0846481Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cse51d17c03242489e915b69\",\r\n \"name\": \"cse51d17c03242489e915b69\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyserviceprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-17T12:19:37.5708184Z\",\r\n \"lastModifiedTime\": \"2015-09-17T12:19:37.5708184Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyserviceresourceprod/providers/Microsoft.DataLakeAnalytics/accounts/copyserviceprod\",\r\n \"name\": \"copyserviceprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.DataLakeAnalytics/accounts/testcertmitigation\",\r\n \"name\": \"testcertmitigation\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner1.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:09:24.8601971Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:09:24.8601971Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner1\",\r\n \"name\": \"konaibizarunner1\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner2.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:10:06.4516006Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:10:06.4516006Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner2\",\r\n \"name\": \"konaibizarunner2\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner3.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:11:19.5898309Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:11:19.5898309Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner3\",\r\n \"name\": \"konaibizarunner3\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testkaprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-06-15T06:54:14.7437003Z\",\r\n \"lastModifiedTime\": \"2015-06-16T01:06:04.4937755Z\"\r\n },\r\n \"location\": \"east us 2\",\r\n \"tags\": {\r\n \"owner\": \"jianyw\",\r\n \"description\": \"hello kona\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/konaprodgroup/providers/Microsoft.DataLakeAnalytics/accounts/testkaprod\",\r\n \"name\": \"testkaprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T18:08:11.3054935Z\",\r\n \"lastModifiedTime\": \"2015-11-05T18:08:53.6834244Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba15884/providers/Microsoft.DataLakeAnalytics/accounts/testaba12926\",\r\n \"name\": \"testaba12926\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T17:56:20.2260922Z\",\r\n \"lastModifiedTime\": \"2015-11-05T17:57:02.9507995Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba17200/providers/Microsoft.DataLakeAnalytics/accounts/testaba12021\",\r\n \"name\": \"testaba12021\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4893\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk4893\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "10198"
+ "681"
],
"Content-Type": [
"application/json"
@@ -2597,16 +2295,16 @@
"no-cache"
],
"x-ms-request-id": [
- "6660482a-7c10-4977-9b49-c7979cd7f506"
+ "5e7d2740-166c-470d-ba03-d35201416a48"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14957"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
],
"x-ms-correlation-request-id": [
- "a583945a-ef9f-4437-91eb-ca18242a6fd4"
+ "1e045e0c-ab8d-4cf3-8a91-faf79de561d8"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000618Z:a583945a-ef9f-4437-91eb-ca18242a6fd4"
+ "CENTRALUS:20160226T021411Z:1e045e0c-ab8d-4cf3-8a91-faf79de561d8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2615,7 +2313,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:18 GMT"
+ "Fri, 26 Feb 2016 02:14:11 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2630,29 +2328,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "c787da76-4ceb-47e6-807f-b4cee3ed9299"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyservicetest.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-21T02:48:35.2085982Z\",\r\n \"lastModifiedTime\": \"2015-10-21T02:48:35.2085982Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/copyservicetest\",\r\n \"name\": \"copyservicetest\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs04a889c02bbf4050884338.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:02:37.4653664Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:02:37.4653664Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs04a889c02bbf4050884338\",\r\n \"name\": \"cs04a889c02bbf4050884338\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs1667ff1b34504973a03335.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-29T19:44:10.8802499Z\",\r\n \"lastModifiedTime\": \"2015-10-29T19:44:10.8802499Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs1667ff1b34504973a03335\",\r\n \"name\": \"cs1667ff1b34504973a03335\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs300c041ebdf84179903fbe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T11:29:07.6089268Z\",\r\n \"lastModifiedTime\": \"2015-10-26T11:29:07.6089268Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs300c041ebdf84179903fbe\",\r\n \"name\": \"cs300c041ebdf84179903fbe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs32a1b3e1b28149279715fe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-30T01:37:59.9077605Z\",\r\n \"lastModifiedTime\": \"2015-10-30T01:37:59.9077605Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs32a1b3e1b28149279715fe\",\r\n \"name\": \"cs32a1b3e1b28149279715fe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs495cce936b3441248d5874.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:35:59.8245136Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:35:59.8245136Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs495cce936b3441248d5874\",\r\n \"name\": \"cs495cce936b3441248d5874\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs63b6b91b670843febc5dbc.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:01:14.5038668Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:01:14.5038668Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs63b6b91b670843febc5dbc\",\r\n \"name\": \"cs63b6b91b670843febc5dbc\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs6b24bd02a80b419b935556.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T12:59:53.3163175Z\",\r\n \"lastModifiedTime\": \"2015-10-26T12:59:53.3163175Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs6b24bd02a80b419b935556\",\r\n \"name\": \"cs6b24bd02a80b419b935556\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs808f2d6d720a4338869cf0.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-27T05:54:39.9811606Z\",\r\n \"lastModifiedTime\": \"2015-10-27T05:54:39.9811606Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs808f2d6d720a4338869cf0\",\r\n \"name\": \"cs808f2d6d720a4338869cf0\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-10-31T00:11:04.712258Z\",\r\n \"lastModifiedTime\": \"2015-10-31T00:11:04.712258Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs90c65bf28c084532877175\",\r\n \"name\": \"cs90c65bf28c084532877175\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"csd30745ad2cec442d89cce7.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-05T20:52:00.4561739Z\",\r\n \"lastModifiedTime\": \"2015-11-05T20:52:00.4561739Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/csd30745ad2cec442d89cce7\",\r\n \"name\": \"csd30745ad2cec442d89cce7\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cse51d17c03242489e915b69.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:39:42.0846481Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:39:42.0846481Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cse51d17c03242489e915b69\",\r\n \"name\": \"cse51d17c03242489e915b69\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyserviceprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-17T12:19:37.5708184Z\",\r\n \"lastModifiedTime\": \"2015-09-17T12:19:37.5708184Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyserviceresourceprod/providers/Microsoft.DataLakeAnalytics/accounts/copyserviceprod\",\r\n \"name\": \"copyserviceprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.DataLakeAnalytics/accounts/testcertmitigation\",\r\n \"name\": \"testcertmitigation\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner1.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:09:24.8601971Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:09:24.8601971Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner1\",\r\n \"name\": \"konaibizarunner1\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner2.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:10:06.4516006Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:10:06.4516006Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner2\",\r\n \"name\": \"konaibizarunner2\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner3.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:11:19.5898309Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:11:19.5898309Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner3\",\r\n \"name\": \"konaibizarunner3\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testkaprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-06-15T06:54:14.7437003Z\",\r\n \"lastModifiedTime\": \"2015-06-16T01:06:04.4937755Z\"\r\n },\r\n \"location\": \"east us 2\",\r\n \"tags\": {\r\n \"owner\": \"jianyw\",\r\n \"description\": \"hello kona\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/konaprodgroup/providers/Microsoft.DataLakeAnalytics/accounts/testkaprod\",\r\n \"name\": \"testkaprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T18:08:11.3054935Z\",\r\n \"lastModifiedTime\": \"2015-11-05T18:08:53.6834244Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba15884/providers/Microsoft.DataLakeAnalytics/accounts/testaba12926\",\r\n \"name\": \"testaba12926\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T17:56:20.2260922Z\",\r\n \"lastModifiedTime\": \"2015-11-05T17:57:02.9507995Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba17200/providers/Microsoft.DataLakeAnalytics/accounts/testaba12021\",\r\n \"name\": \"testaba12021\",\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\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "10198"
+ "488"
],
"Content-Type": [
"application/json"
@@ -2664,16 +2358,16 @@
"no-cache"
],
"x-ms-request-id": [
- "55e7ddd4-ad2d-4ca9-b0f2-522bd89eac4f"
+ "cb219382-c688-4eac-8c09-1daf52113175"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14955"
+ "14993"
],
"x-ms-correlation-request-id": [
- "657d4444-4261-4653-b484-3a419f6bbd0c"
+ "71ffcbe1-ae87-4c17-a1eb-ad96f61f0963"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000619Z:657d4444-4261-4653-b484-3a419f6bbd0c"
+ "CENTRALUS:20160226T021411Z:71ffcbe1-ae87-4c17-a1eb-ad96f61f0963"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2682,7 +2376,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:18 GMT"
+ "Fri, 26 Feb 2016 02:14:11 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2697,29 +2391,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "d56fba3b-fa94-4ffc-960b-138f86eeab78"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyservicetest.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-21T02:48:35.2085982Z\",\r\n \"lastModifiedTime\": \"2015-10-21T02:48:35.2085982Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/copyservicetest\",\r\n \"name\": \"copyservicetest\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs04a889c02bbf4050884338.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:02:37.4653664Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:02:37.4653664Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs04a889c02bbf4050884338\",\r\n \"name\": \"cs04a889c02bbf4050884338\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs1667ff1b34504973a03335.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-29T19:44:10.8802499Z\",\r\n \"lastModifiedTime\": \"2015-10-29T19:44:10.8802499Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs1667ff1b34504973a03335\",\r\n \"name\": \"cs1667ff1b34504973a03335\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs300c041ebdf84179903fbe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T11:29:07.6089268Z\",\r\n \"lastModifiedTime\": \"2015-10-26T11:29:07.6089268Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs300c041ebdf84179903fbe\",\r\n \"name\": \"cs300c041ebdf84179903fbe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs32a1b3e1b28149279715fe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-30T01:37:59.9077605Z\",\r\n \"lastModifiedTime\": \"2015-10-30T01:37:59.9077605Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs32a1b3e1b28149279715fe\",\r\n \"name\": \"cs32a1b3e1b28149279715fe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs495cce936b3441248d5874.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:35:59.8245136Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:35:59.8245136Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs495cce936b3441248d5874\",\r\n \"name\": \"cs495cce936b3441248d5874\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs63b6b91b670843febc5dbc.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:01:14.5038668Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:01:14.5038668Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs63b6b91b670843febc5dbc\",\r\n \"name\": \"cs63b6b91b670843febc5dbc\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs6b24bd02a80b419b935556.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T12:59:53.3163175Z\",\r\n \"lastModifiedTime\": \"2015-10-26T12:59:53.3163175Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs6b24bd02a80b419b935556\",\r\n \"name\": \"cs6b24bd02a80b419b935556\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs808f2d6d720a4338869cf0.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-27T05:54:39.9811606Z\",\r\n \"lastModifiedTime\": \"2015-10-27T05:54:39.9811606Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs808f2d6d720a4338869cf0\",\r\n \"name\": \"cs808f2d6d720a4338869cf0\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-10-31T00:11:04.712258Z\",\r\n \"lastModifiedTime\": \"2015-10-31T00:11:04.712258Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs90c65bf28c084532877175\",\r\n \"name\": \"cs90c65bf28c084532877175\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"csd30745ad2cec442d89cce7.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-05T20:52:00.4561739Z\",\r\n \"lastModifiedTime\": \"2015-11-05T20:52:00.4561739Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/csd30745ad2cec442d89cce7\",\r\n \"name\": \"csd30745ad2cec442d89cce7\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cse51d17c03242489e915b69.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:39:42.0846481Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:39:42.0846481Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cse51d17c03242489e915b69\",\r\n \"name\": \"cse51d17c03242489e915b69\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyserviceprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-17T12:19:37.5708184Z\",\r\n \"lastModifiedTime\": \"2015-09-17T12:19:37.5708184Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyserviceresourceprod/providers/Microsoft.DataLakeAnalytics/accounts/copyserviceprod\",\r\n \"name\": \"copyserviceprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.DataLakeAnalytics/accounts/testcertmitigation\",\r\n \"name\": \"testcertmitigation\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner1.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:09:24.8601971Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:09:24.8601971Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner1\",\r\n \"name\": \"konaibizarunner1\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner2.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:10:06.4516006Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:10:06.4516006Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner2\",\r\n \"name\": \"konaibizarunner2\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner3.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:11:19.5898309Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:11:19.5898309Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner3\",\r\n \"name\": \"konaibizarunner3\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testkaprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-06-15T06:54:14.7437003Z\",\r\n \"lastModifiedTime\": \"2015-06-16T01:06:04.4937755Z\"\r\n },\r\n \"location\": \"east us 2\",\r\n \"tags\": {\r\n \"owner\": \"jianyw\",\r\n \"description\": \"hello kona\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/konaprodgroup/providers/Microsoft.DataLakeAnalytics/accounts/testkaprod\",\r\n \"name\": \"testkaprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T18:08:11.3054935Z\",\r\n \"lastModifiedTime\": \"2015-11-05T18:08:53.6834244Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba15884/providers/Microsoft.DataLakeAnalytics/accounts/testaba12926\",\r\n \"name\": \"testaba12926\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T17:56:20.2260922Z\",\r\n \"lastModifiedTime\": \"2015-11-05T17:57:02.9507995Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba17200/providers/Microsoft.DataLakeAnalytics/accounts/testaba12021\",\r\n \"name\": \"testaba12021\",\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\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba22463.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:38:52.1409021Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:38:52.1409021Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12048/providers/Microsoft.DataLakeAnalytics/accounts/testaba22463\",\r\n \"name\": \"testaba22463\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15365.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:28:35.9650496Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:28:35.9650496Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18569/providers/Microsoft.DataLakeAnalytics/accounts/testaba15365\",\r\n \"name\": \"testaba15365\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "10198"
+ "1433"
],
"Content-Type": [
"application/json"
@@ -2731,16 +2421,16 @@
"no-cache"
],
"x-ms-request-id": [
- "08ef5af4-32ee-4b57-8ff4-f326ad2de75f"
+ "37be65d2-10f6-4d42-97f5-b2e91600958f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14954"
+ "14992"
],
"x-ms-correlation-request-id": [
- "a2bb420b-457c-4251-9a72-6f5119dd525c"
+ "4a99ecd0-3264-4470-8696-aee136b6ff85"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000619Z:a2bb420b-457c-4251-9a72-6f5119dd525c"
+ "CENTRALUS:20160226T021411Z:4a99ecd0-3264-4470-8696-aee136b6ff85"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2749,7 +2439,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:18 GMT"
+ "Fri, 26 Feb 2016 02:14:11 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2764,29 +2454,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "249ca1e4-71f2-4551-8860-10daba91375c"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyservicetest.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-21T02:48:35.2085982Z\",\r\n \"lastModifiedTime\": \"2015-10-21T02:48:35.2085982Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/copyservicetest\",\r\n \"name\": \"copyservicetest\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs04a889c02bbf4050884338.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:02:37.4653664Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:02:37.4653664Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs04a889c02bbf4050884338\",\r\n \"name\": \"cs04a889c02bbf4050884338\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs1667ff1b34504973a03335.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-29T19:44:10.8802499Z\",\r\n \"lastModifiedTime\": \"2015-10-29T19:44:10.8802499Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs1667ff1b34504973a03335\",\r\n \"name\": \"cs1667ff1b34504973a03335\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs300c041ebdf84179903fbe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T11:29:07.6089268Z\",\r\n \"lastModifiedTime\": \"2015-10-26T11:29:07.6089268Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs300c041ebdf84179903fbe\",\r\n \"name\": \"cs300c041ebdf84179903fbe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs32a1b3e1b28149279715fe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-30T01:37:59.9077605Z\",\r\n \"lastModifiedTime\": \"2015-10-30T01:37:59.9077605Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs32a1b3e1b28149279715fe\",\r\n \"name\": \"cs32a1b3e1b28149279715fe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs495cce936b3441248d5874.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:35:59.8245136Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:35:59.8245136Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs495cce936b3441248d5874\",\r\n \"name\": \"cs495cce936b3441248d5874\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs63b6b91b670843febc5dbc.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:01:14.5038668Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:01:14.5038668Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs63b6b91b670843febc5dbc\",\r\n \"name\": \"cs63b6b91b670843febc5dbc\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs6b24bd02a80b419b935556.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T12:59:53.3163175Z\",\r\n \"lastModifiedTime\": \"2015-10-26T12:59:53.3163175Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs6b24bd02a80b419b935556\",\r\n \"name\": \"cs6b24bd02a80b419b935556\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs808f2d6d720a4338869cf0.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-27T05:54:39.9811606Z\",\r\n \"lastModifiedTime\": \"2015-10-27T05:54:39.9811606Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs808f2d6d720a4338869cf0\",\r\n \"name\": \"cs808f2d6d720a4338869cf0\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-10-31T00:11:04.712258Z\",\r\n \"lastModifiedTime\": \"2015-10-31T00:11:04.712258Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs90c65bf28c084532877175\",\r\n \"name\": \"cs90c65bf28c084532877175\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"csd30745ad2cec442d89cce7.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-05T20:52:00.4561739Z\",\r\n \"lastModifiedTime\": \"2015-11-05T20:52:00.4561739Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/csd30745ad2cec442d89cce7\",\r\n \"name\": \"csd30745ad2cec442d89cce7\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cse51d17c03242489e915b69.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:39:42.0846481Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:39:42.0846481Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cse51d17c03242489e915b69\",\r\n \"name\": \"cse51d17c03242489e915b69\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyserviceprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-17T12:19:37.5708184Z\",\r\n \"lastModifiedTime\": \"2015-09-17T12:19:37.5708184Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyserviceresourceprod/providers/Microsoft.DataLakeAnalytics/accounts/copyserviceprod\",\r\n \"name\": \"copyserviceprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.DataLakeAnalytics/accounts/testcertmitigation\",\r\n \"name\": \"testcertmitigation\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner1.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:09:24.8601971Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:09:24.8601971Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner1\",\r\n \"name\": \"konaibizarunner1\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner2.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:10:06.4516006Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:10:06.4516006Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner2\",\r\n \"name\": \"konaibizarunner2\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner3.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:11:19.5898309Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:11:19.5898309Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner3\",\r\n \"name\": \"konaibizarunner3\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testkaprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-06-15T06:54:14.7437003Z\",\r\n \"lastModifiedTime\": \"2015-06-16T01:06:04.4937755Z\"\r\n },\r\n \"location\": \"east us 2\",\r\n \"tags\": {\r\n \"owner\": \"jianyw\",\r\n \"description\": \"hello kona\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/konaprodgroup/providers/Microsoft.DataLakeAnalytics/accounts/testkaprod\",\r\n \"name\": \"testkaprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T18:08:11.3054935Z\",\r\n \"lastModifiedTime\": \"2015-11-05T18:08:53.6834244Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba15884/providers/Microsoft.DataLakeAnalytics/accounts/testaba12926\",\r\n \"name\": \"testaba12926\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T17:56:20.2260922Z\",\r\n \"lastModifiedTime\": \"2015-11-05T17:57:02.9507995Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba17200/providers/Microsoft.DataLakeAnalytics/accounts/testaba12021\",\r\n \"name\": \"testaba12021\",\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\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba22463.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:38:52.1409021Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:38:52.1409021Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12048/providers/Microsoft.DataLakeAnalytics/accounts/testaba22463\",\r\n \"name\": \"testaba22463\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15365.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:28:35.9650496Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:28:35.9650496Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18569/providers/Microsoft.DataLakeAnalytics/accounts/testaba15365\",\r\n \"name\": \"testaba15365\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "10198"
+ "1433"
],
"Content-Type": [
"application/json"
@@ -2798,16 +2484,16 @@
"no-cache"
],
"x-ms-request-id": [
- "00df3607-cfb2-44b3-aede-0b39251f93a6"
+ "22234416-49a2-485d-a0b7-9bc970634a69"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14952"
+ "14991"
],
"x-ms-correlation-request-id": [
- "81e84704-322c-41f4-8e7f-b9eb061d7c30"
+ "2151de20-2885-4d6a-90a4-285363ee2c03"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000619Z:81e84704-322c-41f4-8e7f-b9eb061d7c30"
+ "CENTRALUS:20160226T021411Z:2151de20-2885-4d6a-90a4-285363ee2c03"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2816,7 +2502,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:19 GMT"
+ "Fri, 26 Feb 2016 02:14:11 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2831,29 +2517,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "21ef469b-5dc2-4948-b1b2-7ea1ac0f1dfb"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyservicetest.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-21T02:48:35.2085982Z\",\r\n \"lastModifiedTime\": \"2015-10-21T02:48:35.2085982Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/copyservicetest\",\r\n \"name\": \"copyservicetest\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs04a889c02bbf4050884338.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:02:37.4653664Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:02:37.4653664Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs04a889c02bbf4050884338\",\r\n \"name\": \"cs04a889c02bbf4050884338\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs1667ff1b34504973a03335.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-29T19:44:10.8802499Z\",\r\n \"lastModifiedTime\": \"2015-10-29T19:44:10.8802499Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs1667ff1b34504973a03335\",\r\n \"name\": \"cs1667ff1b34504973a03335\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs300c041ebdf84179903fbe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T11:29:07.6089268Z\",\r\n \"lastModifiedTime\": \"2015-10-26T11:29:07.6089268Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs300c041ebdf84179903fbe\",\r\n \"name\": \"cs300c041ebdf84179903fbe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs32a1b3e1b28149279715fe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-30T01:37:59.9077605Z\",\r\n \"lastModifiedTime\": \"2015-10-30T01:37:59.9077605Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs32a1b3e1b28149279715fe\",\r\n \"name\": \"cs32a1b3e1b28149279715fe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs495cce936b3441248d5874.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:35:59.8245136Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:35:59.8245136Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs495cce936b3441248d5874\",\r\n \"name\": \"cs495cce936b3441248d5874\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs63b6b91b670843febc5dbc.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:01:14.5038668Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:01:14.5038668Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs63b6b91b670843febc5dbc\",\r\n \"name\": \"cs63b6b91b670843febc5dbc\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs6b24bd02a80b419b935556.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T12:59:53.3163175Z\",\r\n \"lastModifiedTime\": \"2015-10-26T12:59:53.3163175Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs6b24bd02a80b419b935556\",\r\n \"name\": \"cs6b24bd02a80b419b935556\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs808f2d6d720a4338869cf0.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-27T05:54:39.9811606Z\",\r\n \"lastModifiedTime\": \"2015-10-27T05:54:39.9811606Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs808f2d6d720a4338869cf0\",\r\n \"name\": \"cs808f2d6d720a4338869cf0\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-10-31T00:11:04.712258Z\",\r\n \"lastModifiedTime\": \"2015-10-31T00:11:04.712258Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs90c65bf28c084532877175\",\r\n \"name\": \"cs90c65bf28c084532877175\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"csd30745ad2cec442d89cce7.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-05T20:52:00.4561739Z\",\r\n \"lastModifiedTime\": \"2015-11-05T20:52:00.4561739Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/csd30745ad2cec442d89cce7\",\r\n \"name\": \"csd30745ad2cec442d89cce7\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cse51d17c03242489e915b69.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:39:42.0846481Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:39:42.0846481Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cse51d17c03242489e915b69\",\r\n \"name\": \"cse51d17c03242489e915b69\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyserviceprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-17T12:19:37.5708184Z\",\r\n \"lastModifiedTime\": \"2015-09-17T12:19:37.5708184Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyserviceresourceprod/providers/Microsoft.DataLakeAnalytics/accounts/copyserviceprod\",\r\n \"name\": \"copyserviceprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.DataLakeAnalytics/accounts/testcertmitigation\",\r\n \"name\": \"testcertmitigation\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner1.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:09:24.8601971Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:09:24.8601971Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner1\",\r\n \"name\": \"konaibizarunner1\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner2.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:10:06.4516006Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:10:06.4516006Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner2\",\r\n \"name\": \"konaibizarunner2\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner3.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:11:19.5898309Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:11:19.5898309Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner3\",\r\n \"name\": \"konaibizarunner3\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testkaprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-06-15T06:54:14.7437003Z\",\r\n \"lastModifiedTime\": \"2015-06-16T01:06:04.4937755Z\"\r\n },\r\n \"location\": \"east us 2\",\r\n \"tags\": {\r\n \"owner\": \"jianyw\",\r\n \"description\": \"hello kona\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/konaprodgroup/providers/Microsoft.DataLakeAnalytics/accounts/testkaprod\",\r\n \"name\": \"testkaprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T18:08:11.3054935Z\",\r\n \"lastModifiedTime\": \"2015-11-05T18:08:53.6834244Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba15884/providers/Microsoft.DataLakeAnalytics/accounts/testaba12926\",\r\n \"name\": \"testaba12926\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T17:56:20.2260922Z\",\r\n \"lastModifiedTime\": \"2015-11-05T17:57:02.9507995Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba17200/providers/Microsoft.DataLakeAnalytics/accounts/testaba12021\",\r\n \"name\": \"testaba12021\",\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\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba22463.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:38:52.1409021Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:38:52.1409021Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12048/providers/Microsoft.DataLakeAnalytics/accounts/testaba22463\",\r\n \"name\": \"testaba22463\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15365.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:28:35.9650496Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:28:35.9650496Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18569/providers/Microsoft.DataLakeAnalytics/accounts/testaba15365\",\r\n \"name\": \"testaba15365\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "10198"
+ "1433"
],
"Content-Type": [
"application/json"
@@ -2865,16 +2547,16 @@
"no-cache"
],
"x-ms-request-id": [
- "ffdfe084-bd3c-4b39-ab59-bbe4767a1823"
+ "3f94c3ab-baec-4b5c-892e-7a49ca76b20e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14951"
+ "14990"
],
"x-ms-correlation-request-id": [
- "beba7de6-3898-4982-bda2-19a4ed326004"
+ "f3bcfc79-a11d-4ce4-b185-b75428e810a3"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000620Z:beba7de6-3898-4982-bda2-19a4ed326004"
+ "CENTRALUS:20160226T021413Z:f3bcfc79-a11d-4ce4-b185-b75428e810a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2883,7 +2565,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:20 GMT"
+ "Fri, 26 Feb 2016 02:14:12 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2898,29 +2580,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "a15332a4-8e76-4b71-9aee-10855af9d09b"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyservicetest.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-21T02:48:35.2085982Z\",\r\n \"lastModifiedTime\": \"2015-10-21T02:48:35.2085982Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/copyservicetest\",\r\n \"name\": \"copyservicetest\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs04a889c02bbf4050884338.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:02:37.4653664Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:02:37.4653664Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs04a889c02bbf4050884338\",\r\n \"name\": \"cs04a889c02bbf4050884338\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs1667ff1b34504973a03335.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-29T19:44:10.8802499Z\",\r\n \"lastModifiedTime\": \"2015-10-29T19:44:10.8802499Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs1667ff1b34504973a03335\",\r\n \"name\": \"cs1667ff1b34504973a03335\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs300c041ebdf84179903fbe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T11:29:07.6089268Z\",\r\n \"lastModifiedTime\": \"2015-10-26T11:29:07.6089268Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs300c041ebdf84179903fbe\",\r\n \"name\": \"cs300c041ebdf84179903fbe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs32a1b3e1b28149279715fe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-30T01:37:59.9077605Z\",\r\n \"lastModifiedTime\": \"2015-10-30T01:37:59.9077605Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs32a1b3e1b28149279715fe\",\r\n \"name\": \"cs32a1b3e1b28149279715fe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs495cce936b3441248d5874.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:35:59.8245136Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:35:59.8245136Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs495cce936b3441248d5874\",\r\n \"name\": \"cs495cce936b3441248d5874\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs63b6b91b670843febc5dbc.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:01:14.5038668Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:01:14.5038668Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs63b6b91b670843febc5dbc\",\r\n \"name\": \"cs63b6b91b670843febc5dbc\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs6b24bd02a80b419b935556.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T12:59:53.3163175Z\",\r\n \"lastModifiedTime\": \"2015-10-26T12:59:53.3163175Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs6b24bd02a80b419b935556\",\r\n \"name\": \"cs6b24bd02a80b419b935556\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs808f2d6d720a4338869cf0.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-27T05:54:39.9811606Z\",\r\n \"lastModifiedTime\": \"2015-10-27T05:54:39.9811606Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs808f2d6d720a4338869cf0\",\r\n \"name\": \"cs808f2d6d720a4338869cf0\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-10-31T00:11:04.712258Z\",\r\n \"lastModifiedTime\": \"2015-10-31T00:11:04.712258Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs90c65bf28c084532877175\",\r\n \"name\": \"cs90c65bf28c084532877175\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"csd30745ad2cec442d89cce7.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-05T20:52:00.4561739Z\",\r\n \"lastModifiedTime\": \"2015-11-05T20:52:00.4561739Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/csd30745ad2cec442d89cce7\",\r\n \"name\": \"csd30745ad2cec442d89cce7\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cse51d17c03242489e915b69.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:39:42.0846481Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:39:42.0846481Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cse51d17c03242489e915b69\",\r\n \"name\": \"cse51d17c03242489e915b69\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyserviceprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-17T12:19:37.5708184Z\",\r\n \"lastModifiedTime\": \"2015-09-17T12:19:37.5708184Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyserviceresourceprod/providers/Microsoft.DataLakeAnalytics/accounts/copyserviceprod\",\r\n \"name\": \"copyserviceprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.DataLakeAnalytics/accounts/testcertmitigation\",\r\n \"name\": \"testcertmitigation\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner1.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:09:24.8601971Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:09:24.8601971Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner1\",\r\n \"name\": \"konaibizarunner1\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner2.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:10:06.4516006Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:10:06.4516006Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner2\",\r\n \"name\": \"konaibizarunner2\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner3.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:11:19.5898309Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:11:19.5898309Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner3\",\r\n \"name\": \"konaibizarunner3\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testkaprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-06-15T06:54:14.7437003Z\",\r\n \"lastModifiedTime\": \"2015-06-16T01:06:04.4937755Z\"\r\n },\r\n \"location\": \"east us 2\",\r\n \"tags\": {\r\n \"owner\": \"jianyw\",\r\n \"description\": \"hello kona\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/konaprodgroup/providers/Microsoft.DataLakeAnalytics/accounts/testkaprod\",\r\n \"name\": \"testkaprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T18:08:11.3054935Z\",\r\n \"lastModifiedTime\": \"2015-11-05T18:08:53.6834244Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba15884/providers/Microsoft.DataLakeAnalytics/accounts/testaba12926\",\r\n \"name\": \"testaba12926\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T17:56:20.2260922Z\",\r\n \"lastModifiedTime\": \"2015-11-05T17:57:02.9507995Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba17200/providers/Microsoft.DataLakeAnalytics/accounts/testaba12021\",\r\n \"name\": \"testaba12021\",\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\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba22463.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:38:52.1409021Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:38:52.1409021Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12048/providers/Microsoft.DataLakeAnalytics/accounts/testaba22463\",\r\n \"name\": \"testaba22463\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15365.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:28:35.9650496Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:28:35.9650496Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18569/providers/Microsoft.DataLakeAnalytics/accounts/testaba15365\",\r\n \"name\": \"testaba15365\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "10198"
+ "1433"
],
"Content-Type": [
"application/json"
@@ -2932,16 +2610,16 @@
"no-cache"
],
"x-ms-request-id": [
- "129b643e-6ed2-4a4a-8de2-24d562e66af8"
+ "d163e0bc-19aa-43ce-964c-c3f26848a9e1"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14949"
+ "14988"
],
"x-ms-correlation-request-id": [
- "271cdac6-c820-44bd-b2a0-125317f50049"
+ "a1930d4b-4a1d-430b-8f07-832ea363129f"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000621Z:271cdac6-c820-44bd-b2a0-125317f50049"
+ "CENTRALUS:20160226T021413Z:a1930d4b-4a1d-430b-8f07-832ea363129f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2950,7 +2628,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:20 GMT"
+ "Fri, 26 Feb 2016 02:14:13 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -2965,29 +2643,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "38b63847-e75d-4cec-8e57-cc6996b9f03d"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13533.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:05:27.8167278Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:06:10.393012Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533\",\r\n \"name\": \"testaba13533\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyservicetest.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-21T02:48:35.2085982Z\",\r\n \"lastModifiedTime\": \"2015-10-21T02:48:35.2085982Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/copyservicetest\",\r\n \"name\": \"copyservicetest\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs04a889c02bbf4050884338.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:02:37.4653664Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:02:37.4653664Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs04a889c02bbf4050884338\",\r\n \"name\": \"cs04a889c02bbf4050884338\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs1667ff1b34504973a03335.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-29T19:44:10.8802499Z\",\r\n \"lastModifiedTime\": \"2015-10-29T19:44:10.8802499Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs1667ff1b34504973a03335\",\r\n \"name\": \"cs1667ff1b34504973a03335\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs300c041ebdf84179903fbe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T11:29:07.6089268Z\",\r\n \"lastModifiedTime\": \"2015-10-26T11:29:07.6089268Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs300c041ebdf84179903fbe\",\r\n \"name\": \"cs300c041ebdf84179903fbe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs32a1b3e1b28149279715fe.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-30T01:37:59.9077605Z\",\r\n \"lastModifiedTime\": \"2015-10-30T01:37:59.9077605Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs32a1b3e1b28149279715fe\",\r\n \"name\": \"cs32a1b3e1b28149279715fe\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs495cce936b3441248d5874.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:35:59.8245136Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:35:59.8245136Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs495cce936b3441248d5874\",\r\n \"name\": \"cs495cce936b3441248d5874\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs63b6b91b670843febc5dbc.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T13:01:14.5038668Z\",\r\n \"lastModifiedTime\": \"2015-10-26T13:01:14.5038668Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs63b6b91b670843febc5dbc\",\r\n \"name\": \"cs63b6b91b670843febc5dbc\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs6b24bd02a80b419b935556.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T12:59:53.3163175Z\",\r\n \"lastModifiedTime\": \"2015-10-26T12:59:53.3163175Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs6b24bd02a80b419b935556\",\r\n \"name\": \"cs6b24bd02a80b419b935556\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cs808f2d6d720a4338869cf0.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-27T05:54:39.9811606Z\",\r\n \"lastModifiedTime\": \"2015-10-27T05:54:39.9811606Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs808f2d6d720a4338869cf0\",\r\n \"name\": \"cs808f2d6d720a4338869cf0\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-10-31T00:11:04.712258Z\",\r\n \"lastModifiedTime\": \"2015-10-31T00:11:04.712258Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cs90c65bf28c084532877175\",\r\n \"name\": \"cs90c65bf28c084532877175\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"csd30745ad2cec442d89cce7.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-05T20:52:00.4561739Z\",\r\n \"lastModifiedTime\": \"2015-11-05T20:52:00.4561739Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/csd30745ad2cec442d89cce7\",\r\n \"name\": \"csd30745ad2cec442d89cce7\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"cse51d17c03242489e915b69.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-10-26T07:39:42.0846481Z\",\r\n \"lastModifiedTime\": \"2015-10-26T07:39:42.0846481Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyservicegroupprod/providers/Microsoft.DataLakeAnalytics/accounts/cse51d17c03242489e915b69\",\r\n \"name\": \"cse51d17c03242489e915b69\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"copyserviceprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-17T12:19:37.5708184Z\",\r\n \"lastModifiedTime\": \"2015-09-17T12:19:37.5708184Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/copyserviceresourceprod/providers/Microsoft.DataLakeAnalytics/accounts/copyserviceprod\",\r\n \"name\": \"copyserviceprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.DataLakeAnalytics/accounts/testcertmitigation\",\r\n \"name\": \"testcertmitigation\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner1.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:09:24.8601971Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:09:24.8601971Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner1\",\r\n \"name\": \"konaibizarunner1\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner2.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:10:06.4516006Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:10:06.4516006Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner2\",\r\n \"name\": \"konaibizarunner2\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"konaibizarunner3.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-09-24T08:11:19.5898309Z\",\r\n \"lastModifiedTime\": \"2015-09-24T08:11:19.5898309Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/ibizarunner/providers/Microsoft.DataLakeAnalytics/accounts/konaibizarunner3\",\r\n \"name\": \"konaibizarunner3\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testkaprod.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-06-15T06:54:14.7437003Z\",\r\n \"lastModifiedTime\": \"2015-06-16T01:06:04.4937755Z\"\r\n },\r\n \"location\": \"east us 2\",\r\n \"tags\": {\r\n \"owner\": \"jianyw\",\r\n \"description\": \"hello kona\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/konaprodgroup/providers/Microsoft.DataLakeAnalytics/accounts/testkaprod\",\r\n \"name\": \"testkaprod\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T18:08:11.3054935Z\",\r\n \"lastModifiedTime\": \"2015-11-05T18:08:53.6834244Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba15884/providers/Microsoft.DataLakeAnalytics/accounts/testaba12926\",\r\n \"name\": \"testaba12926\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"2015-11-05T17:56:20.2260922Z\",\r\n \"lastModifiedTime\": \"2015-11-05T17:57:02.9507995Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/rgaba17200/providers/Microsoft.DataLakeAnalytics/accounts/testaba12021\",\r\n \"name\": \"testaba12021\",\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\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba22463.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:38:52.1409021Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:38:52.1409021Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12048/providers/Microsoft.DataLakeAnalytics/accounts/testaba22463\",\r\n \"name\": \"testaba22463\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15365.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:28:35.9650496Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:28:35.9650496Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18569/providers/Microsoft.DataLakeAnalytics/accounts/testaba15365\",\r\n \"name\": \"testaba15365\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "10198"
+ "1433"
],
"Content-Type": [
"application/json"
@@ -2999,16 +2673,16 @@
"no-cache"
],
"x-ms-request-id": [
- "dd8f2f36-c5a4-445c-9fb0-bda8530429dd"
+ "9dcc0692-590e-4c47-a560-928023139ed7"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14948"
+ "14987"
],
"x-ms-correlation-request-id": [
- "f6175060-5df6-49a2-92ba-a645513cde4f"
+ "4fecac83-6752-4434-a863-b14396c4e8a6"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000621Z:f6175060-5df6-49a2-92ba-a645513cde4f"
+ "CENTRALUS:20160226T021414Z:4fecac83-6752-4434-a863-b14396c4e8a6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3017,7 +2691,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:20 GMT"
+ "Fri, 26 Feb 2016 02:14:14 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3032,38 +2706,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533/DataLakeStoreAccounts/datalake022850?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzMvRGF0YUxha2VTdG9yZUFjY291bnRzL2RhdGFsYWtlMDIyODUwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
- "RequestMethod": "PUT",
- "RequestBody": "{}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "2"
+ "x-ms-client-request-id": [
+ "2682b980-aca5-46b4-810e-17f409a77b83"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-request-id": [
- "318a38c7-1abb-4806-aced-407b7f70c308"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533/dataLakeStoreAccounts/datalake022850\",\r\n \"name\": \"datalake022850\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba22463.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:38:52.1409021Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:38:52.1409021Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12048/providers/Microsoft.DataLakeAnalytics/accounts/testaba22463\",\r\n \"name\": \"testaba22463\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15365.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:28:35.9650496Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:28:35.9650496Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18569/providers/Microsoft.DataLakeAnalytics/accounts/testaba15365\",\r\n \"name\": \"testaba15365\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "324"
+ "1433"
],
"Content-Type": [
"application/json"
@@ -3075,16 +2736,16 @@
"no-cache"
],
"x-ms-request-id": [
- "cc0b7b1a-6e8f-40a8-a56e-72ac96b816d0"
+ "a84e5549-dd84-40d3-b48d-e4063a113358"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14985"
],
"x-ms-correlation-request-id": [
- "d7d2ce72-99a7-40e7-9dbd-cf05905a2342"
+ "b28f6a98-7bb2-4713-80f8-a9108d35c7e1"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000618Z:d7d2ce72-99a7-40e7-9dbd-cf05905a2342"
+ "CENTRALUS:20160226T021414Z:b28f6a98-7bb2-4713-80f8-a9108d35c7e1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3093,7 +2754,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:17 GMT"
+ "Fri, 26 Feb 2016 02:14:14 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3108,32 +2769,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533/DataLakeStoreAccounts/datalake022850?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzMvRGF0YUxha2VTdG9yZUFjY291bnRzL2RhdGFsYWtlMDIyODUwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "46331a0e-5ccf-476e-9551-a24b4b4d55dc"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-request-id": [
- "3d7739c9-7fbd-4c1c-bf95-cfedd0ab5999"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba22463.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:38:52.1409021Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:38:52.1409021Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12048/providers/Microsoft.DataLakeAnalytics/accounts/testaba22463\",\r\n \"name\": \"testaba22463\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15365.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:28:35.9650496Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:28:35.9650496Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18569/providers/Microsoft.DataLakeAnalytics/accounts/testaba15365\",\r\n \"name\": \"testaba15365\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "0"
+ "1433"
+ ],
+ "Content-Type": [
+ "application/json"
],
"Expires": [
"-1"
@@ -3142,16 +2799,16 @@
"no-cache"
],
"x-ms-request-id": [
- "8433adb2-004b-4354-82ef-25ef283ee1c7"
+ "3b54b9a7-26ab-4f69-8c70-7030b8b86205"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14984"
],
"x-ms-correlation-request-id": [
- "12130cee-7b02-4a45-9ffb-5c74d6aae889"
+ "8ae4088e-86f3-4356-a990-5183555c8737"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000619Z:12130cee-7b02-4a45-9ffb-5c74d6aae889"
+ "CENTRALUS:20160226T021415Z:8ae4088e-86f3-4356-a990-5183555c8737"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3160,7 +2817,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:18 GMT"
+ "Fri, 26 Feb 2016 02:14:15 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3175,38 +2832,157 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533/StorageAccounts/azureblob013897?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzMvU3RvcmFnZUFjY291bnRzL2F6dXJlYmxvYjAxMzg5Nz9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"accessKey\": \"nBORbguLFyXNi7ITmfJdWVQZ4dkkolmbbmpN//sMG/J7FfKlt+TGBCexho6BpFTPxSdBt0euU1sR5WqDOQAbMg==\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-client-request-id": [
+ "1af1019e-1d49-4515-9ae4-57b76dcecc7a"
+ ],
+ "accept-language": [
+ "en-US"
],
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba22463.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:38:52.1409021Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:38:52.1409021Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12048/providers/Microsoft.DataLakeAnalytics/accounts/testaba22463\",\r\n \"name\": \"testaba22463\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15365.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:28:35.9650496Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:28:35.9650496Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18569/providers/Microsoft.DataLakeAnalytics/accounts/testaba15365\",\r\n \"name\": \"testaba15365\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
"Content-Length": [
- "137"
+ "1433"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "458dc3be-a492-46ac-9a6d-ec2e7c6c011f"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14982"
+ ],
+ "x-ms-correlation-request-id": [
+ "dbcf37ae-cc61-4a57-b65f-17c60e7af0b6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021416Z:dbcf37ae-cc61-4a57-b65f-17c60e7af0b6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:14:15 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ff7cf8b-a534-4ca6-bd7f-e9aaf21b12df"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8530.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:13:38.3057295Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:14:10.6217384Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530\",\r\n \"name\": \"onesdk8530\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba22463.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:38:52.1409021Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:38:52.1409021Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12048/providers/Microsoft.DataLakeAnalytics/accounts/testaba22463\",\r\n \"name\": \"testaba22463\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15365.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-01-27T23:28:35.9650496Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:28:35.9650496Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18569/providers/Microsoft.DataLakeAnalytics/accounts/testaba15365\",\r\n \"name\": \"testaba15365\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1433"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a2049292-e892-46be-a882-da76dad1b299"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14981"
+ ],
+ "x-ms-correlation-request-id": [
+ "e7186882-f7e4-4791-81b2-6ad1dbb4f961"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021416Z:e7186882-f7e4-4791-81b2-6ad1dbb4f961"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:14:16 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530/DataLakeStoreAccounts/onesdk1411?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwL0RhdGFMYWtlU3RvcmVBY2NvdW50cy9vbmVzZGsxNDExP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "24"
],
"x-ms-client-request-id": [
- "b78c982a-34ad-4cb3-bdcd-aa4665b78e9d"
+ "d4076b08-27fe-498d-8e59-b00cd5dae69f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533/storageAccounts/azureblob013897\",\r\n \"name\": \"azureblob013897\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530/dataLakeStoreAccounts/onesdk1411\",\r\n \"name\": \"onesdk1411\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "308"
+ "314"
],
"Content-Type": [
"application/json"
@@ -3218,16 +2994,16 @@
"no-cache"
],
"x-ms-request-id": [
- "35262bc0-b9c4-4650-9383-7eb37c37959e"
+ "0db137e6-089e-4221-9a00-c9d0827b1ff2"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1197"
],
"x-ms-correlation-request-id": [
- "c66931f7-7e3a-46b1-992b-7daed5eb50b7"
+ "068bbdd0-948c-439b-8b02-1cb844dabda0"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000620Z:c66931f7-7e3a-46b1-992b-7daed5eb50b7"
+ "CENTRALUS:20160226T021413Z:068bbdd0-948c-439b-8b02-1cb844dabda0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3236,7 +3012,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:20 GMT"
+ "Fri, 26 Feb 2016 02:14:12 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3251,26 +3027,148 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533/StorageAccounts/azureblob013897?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzMvU3RvcmFnZUFjY291bnRzL2F6dXJlYmxvYjAxMzg5Nz9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530/DataLakeStoreAccounts/onesdk1411?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwL0RhdGFMYWtlU3RvcmVBY2NvdW50cy9vbmVzZGsxNDExP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "87d238db-d05a-4ccf-8b2b-e52c189205a8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0cae8818-155d-4f0c-8916-ea90ed589958"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-correlation-request-id": [
+ "905401d5-69e2-4c12-bd48-a9c752f7e619"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021414Z:905401d5-69e2-4c12-bd48-a9c752f7e619"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:14:13 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530/StorageAccounts/azureblob015158?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwL1N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTUxNTg/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"accessKey\": \"RRIuary97BqSnJJFAgBes4FBWII+V9RUU0/BxSisVgMcDBcCLOFQeMUXDAeHgYqUmGHewVMsHD1dU/1w49rwTg==\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "137"
+ ],
+ "x-ms-client-request-id": [
+ "d01c5757-efcb-4f3e-85c8-c778b4eec4d2"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530/storageAccounts/azureblob015158\",\r\n \"name\": \"azureblob015158\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "306"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "69dddc6f-ec20-46a4-b4e1-73bb12f45fd0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d130baf-5ec2-4d77-b8ba-530327613e72"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021415Z:0d130baf-5ec2-4d77-b8ba-530327613e72"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
],
+ "Date": [
+ "Fri, 26 Feb 2016 02:14:15 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530/StorageAccounts/azureblob015158?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwL1N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTUxNTg/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
"x-ms-client-request-id": [
- "9cf706b2-4b00-468a-a0b8-116cf7f2626e"
+ "ebf1e5c5-41b5-4276-a52b-5f5a9d248069"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
"ResponseBody": "",
@@ -3285,16 +3183,16 @@
"no-cache"
],
"x-ms-request-id": [
- "b9158371-bb5b-4a14-8cb5-0dcf085cca06"
+ "fa617c0e-896b-474d-8aaa-42735d6bec32"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "1194"
],
"x-ms-correlation-request-id": [
- "43f0bd86-a437-42cb-8c91-58a5e441b877"
+ "fc6ef4cb-0268-4f02-8f50-f30ba99c65af"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000621Z:43f0bd86-a437-42cb-8c91-58a5e441b877"
+ "CENTRALUS:20160226T021416Z:fc6ef4cb-0268-4f02-8f50-f30ba99c65af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3303,7 +3201,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:20 GMT"
+ "Fri, 26 Feb 2016 02:14:16 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3318,23 +3216,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg19412/providers/Microsoft.DataLakeAnalytics/accounts/testaba13533?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTk0MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1MzM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8530?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NTMwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "55ef8021-8d9c-423c-85a4-64e3cab772fb"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
"ResponseBody": "",
@@ -3349,16 +3243,16 @@
"no-cache"
],
"x-ms-request-id": [
- "1be8185f-cc5f-43b0-9607-35aa3189e354"
+ "3d5596e4-37e7-425b-ac15-2bea1d0a8cfe"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1189"
+ "1193"
],
"x-ms-correlation-request-id": [
- "9bf0dedf-e09c-45f9-a157-28c1c6b58251"
+ "4cf08d65-3a14-46f1-92e5-e0032ee52fe6"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000623Z:9bf0dedf-e09c-45f9-a157-28c1c6b58251"
+ "CENTRALUS:20160226T021419Z:4cf08d65-3a14-46f1-92e5-e0032ee52fe6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3367,7 +3261,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:06:22 GMT"
+ "Fri, 26 Feb 2016 02:14:18 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3380,10 +3274,879 @@
]
},
"StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk4893?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazQ4OTM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3e82ce5e-b3f7-43dc-b535-b5110058d0d0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "1abeceec-7624-4d8d-85a3-ed22e646009d"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "f49439c7-279c-43fa-ac9b-1fb47db4e88f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T021421Z:f49439c7-279c-43fa-ac9b-1fb47db4e88f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:14:20 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk8081/providers/Microsoft.DataLakeStore/accounts/onesdk1411?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazgwODEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazE0MTE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ca056266-0c49-402c-a62f-2e5a4bd95b98"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e3a958e8-9218-4d1f-9e78-1feedf00c099"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-correlation-request-id": [
+ "e043a728-8d40-4fbe-b8a7-93fad62e7640"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T021422Z:e043a728-8d40-4fbe-b8a7-93fad62e7640"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:14:22 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk8081?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwODE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "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": [
+ "496279fa-f864-41f9-884d-7e049826c315"
+ ],
+ "x-ms-correlation-request-id": [
+ "496279fa-f864-41f9-884d-7e049826c315"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021424Z:496279fa-f864-41f9-884d-7e049826c315"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:14:23 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDgxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDgxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNRGd4TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "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": [
+ "db7491ab-86f8-4db4-96c4-502e571c930e"
+ ],
+ "x-ms-correlation-request-id": [
+ "db7491ab-86f8-4db4-96c4-502e571c930e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021424Z:db7491ab-86f8-4db4-96c4-502e571c930e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:14:23 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDgxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDgxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNRGd4TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "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": [
+ "54717866-4138-43fd-a602-034c2dce58bf"
+ ],
+ "x-ms-correlation-request-id": [
+ "54717866-4138-43fd-a602-034c2dce58bf"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021439Z:54717866-4138-43fd-a602-034c2dce58bf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:14:38 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDgxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDgxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNRGd4TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "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": [
+ "a242f8fa-b014-430c-a449-771d1569bc3b"
+ ],
+ "x-ms-correlation-request-id": [
+ "a242f8fa-b014-430c-a449-771d1569bc3b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021454Z:a242f8fa-b014-430c-a449-771d1569bc3b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:14:54 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDgxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDgxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNRGd4TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-request-id": [
+ "a7f63cfc-8926-44c2-833f-ceae0fcd7b30"
+ ],
+ "x-ms-correlation-request-id": [
+ "a7f63cfc-8926-44c2-833f-ceae0fcd7b30"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021509Z:a7f63cfc-8926-44c2-833f-ceae0fcd7b30"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:15:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/abarg11923?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTE5MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "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": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "c41a5c3a-3a6e-4e4f-b07e-8831e938833b"
+ ],
+ "x-ms-correlation-request-id": [
+ "c41a5c3a-3a6e-4e4f-b07e-8831e938833b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021510Z:c41a5c3a-3a6e-4e4f-b07e-8831e938833b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:15:09 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhPVEl6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "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": [
+ "14994"
+ ],
+ "x-ms-request-id": [
+ "ca8bff54-ba93-4707-8f85-8e15d80d6df2"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca8bff54-ba93-4707-8f85-8e15d80d6df2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021510Z:ca8bff54-ba93-4707-8f85-8e15d80d6df2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:15:10 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhPVEl6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "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": [
+ "14993"
+ ],
+ "x-ms-request-id": [
+ "1fa75a18-dd29-454e-8487-571cc7c596f5"
+ ],
+ "x-ms-correlation-request-id": [
+ "1fa75a18-dd29-454e-8487-571cc7c596f5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021525Z:1fa75a18-dd29-454e-8487-571cc7c596f5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:15:25 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhPVEl6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "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": [
+ "14992"
+ ],
+ "x-ms-request-id": [
+ "959a8441-2d96-4647-953e-00f74b40657b"
+ ],
+ "x-ms-correlation-request-id": [
+ "959a8441-2d96-4647-953e-00f74b40657b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021540Z:959a8441-2d96-4647-953e-00f74b40657b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:15:40 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhPVEl6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "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": [
+ "14991"
+ ],
+ "x-ms-request-id": [
+ "f47e64e8-ba3d-40db-8ee5-ea2df4a74041"
+ ],
+ "x-ms-correlation-request-id": [
+ "f47e64e8-ba3d-40db-8ee5-ea2df4a74041"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021556Z:f47e64e8-ba3d-40db-8ee5-ea2df4a74041"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:15:55 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhPVEl6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "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": [
+ "14990"
+ ],
+ "x-ms-request-id": [
+ "5c5d6d37-c21e-46c1-a147-a5039c600f03"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c5d6d37-c21e-46c1-a147-a5039c600f03"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021611Z:5c5d6d37-c21e-46c1-a147-a5039c600f03"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:16:10 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhPVEl6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "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": [
+ "14989"
+ ],
+ "x-ms-request-id": [
+ "22bf8893-3f36-4d5d-a1e2-87d76b1022fb"
+ ],
+ "x-ms-correlation-request-id": [
+ "22bf8893-3f36-4d5d-a1e2-87d76b1022fb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021626Z:22bf8893-3f36-4d5d-a1e2-87d76b1022fb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:16:26 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhPVEl6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "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": [
+ "14988"
+ ],
+ "x-ms-request-id": [
+ "bea4eeba-482a-4e1b-981d-14b292e2b086"
+ ],
+ "x-ms-correlation-request-id": [
+ "bea4eeba-482a-4e1b-981d-14b292e2b086"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021641Z:bea4eeba-482a-4e1b-981d-14b292e2b086"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:16:41 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BQkFSRzExOTIzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCUWtGU1J6RXhPVEl6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14987"
+ ],
+ "x-ms-request-id": [
+ "210763da-0bb3-44b2-9d31-50cea94928dd"
+ ],
+ "x-ms-correlation-request-id": [
+ "210763da-0bb3-44b2-9d31-50cea94928dd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T021657Z:210763da-0bb3-44b2-9d31-50cea94928dd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:16:56 GMT"
+ ]
+ },
+ "StatusCode": 200
}
],
- "Names": {},
+ "Names": {
+ "RunPsTestWorkflow": [
+ "abarg11923",
+ "azureblob015158"
+ ],
+ "": [
+ "onesdk8081",
+ "onesdk8530",
+ "onesdk4893",
+ "onesdk1411"
+ ]
+ },
"Variables": {
- "SubscriptionId": "46153750-fa3b-4140-bf57-8beb7d5c971a"
+ "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f"
}
}
\ No newline at end of file
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 898947cc0edb..3710e1203e9a 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
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/register?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/register?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1573"
+ "1013"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,16 +25,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1140"
+ "1197"
],
"x-ms-request-id": [
- "4fc69e19-08df-45b3-a819-c75ccd4a9d19"
+ "52e261ef-ac0f-4b35-9073-46f015c535a4"
],
"x-ms-correlation-request-id": [
- "4fc69e19-08df-45b3-a819-c75ccd4a9d19"
+ "52e261ef-ac0f-4b35-9073-46f015c535a4"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221135Z:4fc69e19-08df-45b3-a819-c75ccd4a9d19"
+ "WESTUS:20160226T021702Z:52e261ef-ac0f-4b35-9073-46f015c535a4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,14 +43,14 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:11:35 GMT"
+ "Fri, 26 Feb 2016 02:17:02 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -58,10 +58,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1573"
+ "1013"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14756"
+ "14996"
],
"x-ms-request-id": [
- "b99af89f-68ec-403a-970f-fc0527b87ce5"
+ "44c56aba-12d9-4ef8-80f6-37fc6328c612"
],
"x-ms-correlation-request-id": [
- "b99af89f-68ec-403a-970f-fc0527b87ce5"
+ "44c56aba-12d9-4ef8-80f6-37fc6328c612"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221135Z:b99af89f-68ec-403a-970f-fc0527b87ce5"
+ "WESTUS:20160226T021702Z:44c56aba-12d9-4ef8-80f6-37fc6328c612"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,31 +91,25 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:11:35 GMT"
+ "Fri, 26 Feb 2016 02:17:02 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourcegroups/abarg17624?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlZ3JvdXBzL2FiYXJnMTc2MjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk9419?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazk0MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624\",\r\n \"name\": \"abarg17624\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "174"
+ "102"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,17 +120,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1139"
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
],
"x-ms-request-id": [
- "50d59a8d-c68d-42bd-b71d-14e1e0b55fd2"
+ "8c9fbc28-e94f-4961-b361-eaeae8ce444b"
],
"x-ms-correlation-request-id": [
- "50d59a8d-c68d-42bd-b71d-14e1e0b55fd2"
+ "8c9fbc28-e94f-4961-b361-eaeae8ce444b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221135Z:50d59a8d-c68d-42bd-b71d-14e1e0b55fd2"
+ "WESTUS:20160226T021707Z:8c9fbc28-e94f-4961-b361-eaeae8ce444b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,28 +142,25 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:11:35 GMT"
+ "Fri, 26 Feb 2016 02:17:07 GMT"
]
},
- "StatusCode": 201
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourcegroups/abarg17624?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlZ3JvdXBzL2FiYXJnMTc2MjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk9419?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazk0MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624\",\r\n \"name\": \"abarg17624\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "174"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "0"
],
"Expires": [
"-1"
@@ -175,16 +169,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14755"
+ "14999"
],
"x-ms-request-id": [
- "d57c590b-8360-4620-8048-a15a0ab25919"
+ "725164d0-b810-4fa5-b7dc-52dd96fab71e"
],
"x-ms-correlation-request-id": [
- "d57c590b-8360-4620-8048-a15a0ab25919"
+ "725164d0-b810-4fa5-b7dc-52dd96fab71e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221135Z:d57c590b-8360-4620-8048-a15a0ab25919"
+ "WESTUS:20160226T022250Z:725164d0-b810-4fa5-b7dc-52dd96fab71e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,44 +187,34 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:11:35 GMT"
+ "Fri, 26 Feb 2016 02:22:50 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 204
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeStore/accounts/datalake01645?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDE2NDU/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk9419?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazk0MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"datalake01645\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "59"
- ],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "31"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
- ],
- "x-ms-client-request-id": [
- "8748cef7-0563-4ea4-b98e-765bea03c2ef"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeStore/accounts/datalake01645\",\r\n \"name\": \"datalake01645\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419\",\r\n \"name\": \"onesdk9419\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "362"
+ "174"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -238,23 +222,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7a17f5e0-cf99-46a5-b505-959a1a31d73f0?api-version=2015-10-01-preview&expanded=true"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
],
"x-ms-request-id": [
- "1f504f3c-6b60-4b27-961a-cb6fd6c9b7da"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1131"
+ "7a2585dd-bcee-4ed9-ba65-a7b51c1fde05"
],
"x-ms-correlation-request-id": [
- "1d077e9d-c32a-4154-8df5-8e063e1b30e2"
+ "7a2585dd-bcee-4ed9-ba65-a7b51c1fde05"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221136Z:1d077e9d-c32a-4154-8df5-8e063e1b30e2"
+ "WESTUS:20160226T021709Z:7a2585dd-bcee-4ed9-ba65-a7b51c1fde05"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -263,43 +241,28 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:11:35 GMT"
- ],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourcegroups/abarg17624/providers/Microsoft.DataLakeStore/accounts/datalake01645/operationresults/0?api-version=2015-10-01-preview"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:17:08 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7a17f5e0-cf99-46a5-b505-959a1a31d73f0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzdhMTdmNWUwLWNmOTktNDZhNS1iNTA1LTk1OWExYTMxZDczZjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "12"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -307,17 +270,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "e8446375-e325-4245-9c38-5e40661a6a81"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14775"
+ "14994"
+ ],
+ "x-ms-request-id": [
+ "22b9cdfe-ca59-4ad4-a2dd-c65af262244f"
],
"x-ms-correlation-request-id": [
- "f816865f-4e6e-4aff-ad5b-f2e59e58d355"
+ "22b9cdfe-ca59-4ad4-a2dd-c65af262244f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221136Z:f816865f-4e6e-4aff-ad5b-f2e59e58d355"
+ "WESTUS:20160226T021709Z:22b9cdfe-ca59-4ad4-a2dd-c65af262244f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -326,40 +289,34 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:11:35 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:17:08 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7a17f5e0-cf99-46a5-b505-959a1a31d73f0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzdhMTdmNWUwLWNmOTktNDZhNS1iNTA1LTk1OWExYTMxZDczZjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeStore/accounts/onesdk2536?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazI1MzY/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "10980186-7932-4986-847f-26fc491bb29d"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk2536' under resource group 'onesdk9419' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "157"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -367,17 +324,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "d0aff604-765e-4c26-83cf-f554aa8b62ab"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14772"
+ "x-ms-request-id": [
+ "5ea9c3e5-c4da-4f46-8c76-fb06978ec386"
],
"x-ms-correlation-request-id": [
- "49688e19-6d5a-4af4-a9c0-a10dd6aca57b"
+ "5ea9c3e5-c4da-4f46-8c76-fb06978ec386"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221146Z:49688e19-6d5a-4af4-a9c0-a10dd6aca57b"
+ "WESTUS:20160226T021710Z:5ea9c3e5-c4da-4f46-8c76-fb06978ec386"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -386,40 +343,34 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:11:46 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:17:10 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7a17f5e0-cf99-46a5-b505-959a1a31d73f0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzdhMTdmNWUwLWNmOTktNDZhNS1iNTA1LTk1OWExYTMxZDczZjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeStore/accounts/onesdk2536?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazI1MzY/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "a63bc07f-7828-4040-ba97-60ff2fdcc2e8"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk2536' under resource group 'onesdk9419' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "157"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -427,17 +378,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "e6eb24e5-40f8-44ea-95e2-53645dfda909"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14770"
+ "x-ms-request-id": [
+ "05643e0e-6ee7-4273-992e-4db25f1a12f4"
],
"x-ms-correlation-request-id": [
- "928a6b09-a1e7-436c-88e6-be2fb60d6d70"
+ "05643e0e-6ee7-4273-992e-4db25f1a12f4"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221202Z:928a6b09-a1e7-436c-88e6-be2fb60d6d70"
+ "WESTUS:20160226T021710Z:05643e0e-6ee7-4273-992e-4db25f1a12f4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -446,37 +397,25 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:12:02 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:17:10 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7a17f5e0-cf99-46a5-b505-959a1a31d73f0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzdhMTdmNWUwLWNmOTktNDZhNS1iNTA1LTk1OWExYTMxZDczZjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeStore/accounts/onesdk2536?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazI1MzY/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk2536.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:17:14.3069648Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:17:14.3069648Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeStore/accounts/onesdk2536\",\r\n \"name\": \"onesdk2536\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "22"
+ "488"
],
"Content-Type": [
"application/json"
@@ -488,16 +427,16 @@
"no-cache"
],
"x-ms-request-id": [
- "8df8a400-044c-462d-98cb-c724fe8ed16c"
+ "add379fb-a182-4cde-95ae-244726197a01"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14766"
+ "14980"
],
"x-ms-correlation-request-id": [
- "053106c3-287e-4f7d-8cb7-664275ad8616"
+ "1cd4578b-1050-4dc1-9fdf-0c8a3bf69654"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221217Z:053106c3-287e-4f7d-8cb7-664275ad8616"
+ "WESTUS:20160226T021743Z:1cd4578b-1050-4dc1-9fdf-0c8a3bf69654"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -506,7 +445,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:12:17 GMT"
+ "Fri, 26 Feb 2016 02:17:42 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -521,26 +460,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeStore/accounts/datalake01645?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDE2NDU/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeStore/accounts/onesdk2536?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazI1MzY/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "x-ms-client-request-id": [
+ "49df5e2b-dce4-4aac-8738-a795cd0f634d"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"datalake01645.caboaccountdogfood.net\",\r\n \"creationTime\": \"2015-12-11T22:11:40.7081474Z\",\r\n \"lastModifiedTime\": \"2015-12-11T22:11:40.7081474Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeStore/accounts/datalake01645\",\r\n \"name\": \"datalake01645\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk2536.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:17:14.3069648Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:17:14.3069648Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeStore/accounts/onesdk2536\",\r\n \"name\": \"onesdk2536\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "499"
+ "488"
],
"Content-Type": [
"application/json"
@@ -552,16 +490,16 @@
"no-cache"
],
"x-ms-request-id": [
- "c7ab57bd-6b86-4737-aa65-1d488a4c1396"
+ "370cabe9-5cce-4c05-bb2d-24b3229bd793"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14765"
+ "14999"
],
"x-ms-correlation-request-id": [
- "1dff2ea8-71c6-43fd-900c-136fa6584aed"
+ "d69c9bfe-6045-4c3b-afc2-562333d46ea3"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221217Z:1dff2ea8-71c6-43fd-900c-136fa6584aed"
+ "WESTUS:20160226T022248Z:d69c9bfe-6045-4c3b-afc2-562333d46ea3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -570,7 +508,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:12:17 GMT"
+ "Fri, 26 Feb 2016 02:22:48 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -585,35 +523,31 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeStore/accounts/datalake027456?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDI3NDU2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeStore/accounts/onesdk2536?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazI1MzY/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"datalake027456\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"onesdk2536\",\r\n \"tags\": {},\r\n \"properties\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "60"
+ "92"
+ ],
+ "x-ms-client-request-id": [
+ "27c2c564-23db-4714-a4ab-af9e033885a3"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
- ],
- "x-ms-client-request-id": [
- "a44b91a7-dada-4cd7-92dc-9eeb27dcfeba"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeStore/accounts/datalake027456\",\r\n \"name\": \"datalake027456\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeStore/accounts/onesdk2536\",\r\n \"name\": \"onesdk2536\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "364"
+ "354"
],
"Content-Type": [
"application/json"
@@ -628,19 +562,19 @@
"10"
],
"Azure-AsyncOperation": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/bfe5b4e3-4ebf-4f9b-bd8b-0a451b59a0320?api-version=2015-10-01-preview&expanded=true"
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0502b4c4-0a1f-42ec-9945-dc4a101fde9e0?api-version=2015-10-01-preview&expanded=true"
],
"x-ms-request-id": [
- "fea4333b-9d49-4a1a-b8b9-7ec0742f43c2"
+ "38adab01-e6cb-4148-9406-b713fa2e2324"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1129"
+ "1193"
],
"x-ms-correlation-request-id": [
- "f7b17604-c319-4954-b147-f696523c87da"
+ "aa38795b-5b97-41da-9861-9108adf27938"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221218Z:f7b17604-c319-4954-b147-f696523c87da"
+ "WESTUS:20160226T021712Z:aa38795b-5b97-41da-9861-9108adf27938"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -649,10 +583,10 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:12:18 GMT"
+ "Fri, 26 Feb 2016 02:17:12 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourcegroups/abarg17624/providers/Microsoft.DataLakeStore/accounts/datalake027456/operationresults/0?api-version=2015-10-01-preview"
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk9419/providers/Microsoft.DataLakeStore/accounts/onesdk2536/operationresults/0?api-version=2015-10-01-preview"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -667,22 +601,19 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/bfe5b4e3-4ebf-4f9b-bd8b-0a451b59a0320?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2JmZTViNGUzLTRlYmYtNGY5Yi1iZDhiLTBhNDUxYjU5YTAzMjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0502b4c4-0a1f-42ec-9945-dc4a101fde9e0?api-version=2015-10-01-preview&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzA1MDJiNGM0LTBhMWYtNDJlYy05OTQ1LWRjNGExMDFmZGU5ZTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.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"
@@ -694,16 +625,16 @@
"no-cache"
],
"x-ms-request-id": [
- "94a042f3-07bd-4a27-b9b7-96ec522324e1"
+ "5cbe77a0-bf3a-44ec-8f7e-7ad10177a02e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14763"
+ "14981"
],
"x-ms-correlation-request-id": [
- "4aecdd0c-de54-468d-88b8-c4763907945a"
+ "fb0deb0e-e96c-40ca-bbe0-b3b80ff9500f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221218Z:4aecdd0c-de54-468d-88b8-c4763907945a"
+ "WESTUS:20160226T021743Z:fb0deb0e-e96c-40ca-bbe0-b3b80ff9500f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -712,7 +643,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:12:18 GMT"
+ "Fri, 26 Feb 2016 02:17:42 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -727,25 +658,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/bfe5b4e3-4ebf-4f9b-bd8b-0a451b59a0320?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2JmZTViNGUzLTRlYmYtNGY5Yi1iZDhiLTBhNDUxYjU5YTAzMjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeAnalytics/accounts/onesdk3068?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGszMDY4P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "d3780d6c-f809-426f-b945-eb65be081447"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.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/onesdk3068' under resource group 'onesdk9419' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "161"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -753,17 +687,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "73775ca4-1b32-4f47-a073-e3a29c122ef3"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14760"
+ "x-ms-request-id": [
+ "71cfaac1-07e6-4517-9c65-19166528f4c7"
],
"x-ms-correlation-request-id": [
- "658c80c8-959d-4edd-99c4-5c9869fd5e30"
+ "71cfaac1-07e6-4517-9c65-19166528f4c7"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221228Z:658c80c8-959d-4edd-99c4-5c9869fd5e30"
+ "WESTUS:20160226T021743Z:71cfaac1-07e6-4517-9c65-19166528f4c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -772,40 +706,34 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:12:27 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:17:43 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/bfe5b4e3-4ebf-4f9b-bd8b-0a451b59a0320?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2JmZTViNGUzLTRlYmYtNGY5Yi1iZDhiLTBhNDUxYjU5YTAzMjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeAnalytics/accounts/onesdk3068?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGszMDY4P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "18fcd895-cc41-46b7-86a9-cc2cd9ba2b8d"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.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/onesdk3068' under resource group 'onesdk9419' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "161"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -813,17 +741,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "b17a184c-a06b-440c-8818-26976a95a024"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14755"
+ "x-ms-request-id": [
+ "88adc505-b111-4602-be99-1754f5dffcdf"
],
"x-ms-correlation-request-id": [
- "6eabbc81-a00a-4577-ae6a-1e7eb1592117"
+ "88adc505-b111-4602-be99-1754f5dffcdf"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221243Z:6eabbc81-a00a-4577-ae6a-1e7eb1592117"
+ "WESTUS:20160226T021744Z:88adc505-b111-4602-be99-1754f5dffcdf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -832,37 +760,25 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:12:43 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:17:43 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/bfe5b4e3-4ebf-4f9b-bd8b-0a451b59a0320?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2JmZTViNGUzLTRlYmYtNGY5Yi1iZDhiLTBhNDUxYjU5YTAzMjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeAnalytics/accounts/onesdk3068?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGszMDY4P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk2536\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk2536\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk3068.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:17:48.5537772Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:17:48.5537772Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeAnalytics/accounts/onesdk3068\",\r\n \"name\": \"onesdk3068\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "22"
+ "659"
],
"Content-Type": [
"application/json"
@@ -874,16 +790,16 @@
"no-cache"
],
"x-ms-request-id": [
- "2c5a010a-5610-4a54-8eae-630f1dfd632c"
+ "ed446739-f32a-4ddd-9073-9020ca29f63f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14754"
+ "14996"
],
"x-ms-correlation-request-id": [
- "ce382d3a-b7d9-48f7-91fe-8e3506c1d75d"
+ "d01fc0f0-f6b8-4879-b47a-8727a05fa7cd"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221259Z:ce382d3a-b7d9-48f7-91fe-8e3506c1d75d"
+ "WESTUS:20160226T021819Z:d01fc0f0-f6b8-4879-b47a-8727a05fa7cd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -892,7 +808,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:12:59 GMT"
+ "Fri, 26 Feb 2016 02:18:19 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -907,26 +823,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeStore/accounts/datalake027456?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDI3NDU2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeAnalytics/accounts/onesdk3068?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGszMDY4P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "x-ms-client-request-id": [
+ "118e3cd1-10c7-448a-8134-8543fbe8cb2f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"datalake027456.caboaccountdogfood.net\",\r\n \"creationTime\": \"2015-12-11T22:12:21.9228527Z\",\r\n \"lastModifiedTime\": \"2015-12-11T22:12:21.9228527Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeStore/accounts/datalake027456\",\r\n \"name\": \"datalake027456\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk2536\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk2536\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk3068.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:17:48.5537772Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:17:48.5537772Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeAnalytics/accounts/onesdk3068\",\r\n \"name\": \"onesdk3068\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "502"
+ "659"
],
"Content-Type": [
"application/json"
@@ -938,16 +853,16 @@
"no-cache"
],
"x-ms-request-id": [
- "3eb98e27-bff2-4bf7-aa70-310d6b61e20b"
+ "a835e83c-a2f6-467d-9358-53296ca1a5e4"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14753"
+ "14995"
],
"x-ms-correlation-request-id": [
- "13bb8765-b3ff-427f-abc9-c2f47a6e349b"
+ "daa0a62f-74a0-4eb8-83f5-7c389b616597"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221259Z:13bb8765-b3ff-427f-abc9-c2f47a6e349b"
+ "WESTUS:20160226T021819Z:daa0a62f-74a0-4eb8-83f5-7c389b616597"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -956,7 +871,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:12:59 GMT"
+ "Fri, 26 Feb 2016 02:18:19 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -971,32 +886,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeAnalytics/accounts/testaba1781?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTc4MT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeAnalytics/accounts/onesdk3068?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGszMDY4P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "38c9309d-8e80-4582-bc72-16c18f58aa9c"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba1781' under resource group 'abarg17624' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk2536\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk2536\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk3068.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:17:48.5537772Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:17:48.5537772Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeAnalytics/accounts/onesdk3068\",\r\n \"name\": \"onesdk3068\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "162"
+ "659"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -1004,17 +915,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
- ],
"x-ms-request-id": [
- "80c12832-9068-4a57-816d-08510d8e19e1"
+ "bd96a034-ac85-40b9-a4cd-23b4766418a7"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
],
"x-ms-correlation-request-id": [
- "80c12832-9068-4a57-816d-08510d8e19e1"
+ "eb6fabf7-0b28-4cfc-b3be-a857ff3aa8ba"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221304Z:80c12832-9068-4a57-816d-08510d8e19e1"
+ "WESTUS:20160226T022244Z:eb6fabf7-0b28-4cfc-b3be-a857ff3aa8ba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1023,35 +934,40 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:13:04 GMT"
+ "Fri, 26 Feb 2016 02:22:44 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeAnalytics/accounts/testaba1781?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTc4MT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeAnalytics/accounts/onesdk3068?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGszMDY4P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "d582af9e-473f-418f-8798-2b1e547aec57"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba1781' under resource group 'abarg17624' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/onesdk3068' under resource group 'onesdk9419' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "162"
+ "161"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1066,13 +982,13 @@
"gateway"
],
"x-ms-request-id": [
- "cbd22aae-4e40-4f90-ab0d-8e1266c44809"
+ "00ab372f-e024-4620-850a-81aee94457b5"
],
"x-ms-correlation-request-id": [
- "cbd22aae-4e40-4f90-ab0d-8e1266c44809"
+ "00ab372f-e024-4620-850a-81aee94457b5"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221304Z:cbd22aae-4e40-4f90-ab0d-8e1266c44809"
+ "WESTUS:20160226T022247Z:00ab372f-e024-4620-850a-81aee94457b5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1081,38 +997,34 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:13:04 GMT"
+ "Fri, 26 Feb 2016 02:22:46 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeAnalytics/accounts/testaba1781?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTc4MT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeAnalytics/accounts/onesdk3068?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGszMDY4P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "bd9f2c2a-a2ed-4aac-aae2-94961f6e9474"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake01645\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"datalake01645\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba1781.konaaccountdogfood.net\",\r\n \"creationTime\": \"2015-12-11T22:13:03.9284021Z\",\r\n \"lastModifiedTime\": \"2015-12-11T22:13:03.9284021Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeAnalytics/accounts/testaba1781\",\r\n \"name\": \"testaba1781\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/onesdk3068' under resource group 'onesdk9419' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "664"
+ "161"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1120,17 +1032,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "45572482-28d4-4f92-82a2-0f8a65689aeb"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14707"
+ "x-ms-request-id": [
+ "1842e02d-4603-4101-9c78-5afb428c48cd"
],
"x-ms-correlation-request-id": [
- "63e5003e-b0ce-4000-b684-36d24e9cacdd"
+ "1842e02d-4603-4101-9c78-5afb428c48cd"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221345Z:63e5003e-b0ce-4000-b684-36d24e9cacdd"
+ "WESTUS:20160226T022247Z:1842e02d-4603-4101-9c78-5afb428c48cd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1139,44 +1051,37 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:13:45 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:22:46 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeAnalytics/accounts/testaba1781?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTc4MT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeAnalytics/accounts/onesdk3068?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGszMDY4P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"onesdk3068\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk2536\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"onesdk2536\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "233"
+ ],
+ "x-ms-client-request-id": [
+ "c20e96a8-4155-497f-a828-ca63a1ae31bc"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake01645\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"datalake01645\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba1781.konaaccountdogfood.net\",\r\n \"creationTime\": \"2015-12-11T22:13:03.9284021Z\",\r\n \"lastModifiedTime\": \"2015-12-11T22:13:03.9284021Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeAnalytics/accounts/testaba1781\",\r\n \"name\": \"testaba1781\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk2536\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"onesdk2536\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeAnalytics/accounts/onesdk3068\",\r\n \"name\": \"onesdk3068\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "664"
+ "453"
],
"Content-Type": [
"application/json"
@@ -1187,17 +1092,23 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/f300049e-5bfa-4848-bd5c-cf2a700f2b260?api-version=2015-10-01-preview&expanded=true"
+ ],
"x-ms-request-id": [
- "e287d634-5d93-4711-b2fc-5e7aeee15637"
+ "c4396782-656e-4c75-9c39-83bbf2fd7414"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14706"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "a89d6e58-beb7-4d38-a11d-d8653a1994b2"
+ "ac96e106-7a57-473e-b908-46f513533165"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221346Z:a89d6e58-beb7-4d38-a11d-d8653a1994b2"
+ "WESTUS:20160226T021749Z:ac96e106-7a57-473e-b908-46f513533165"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1206,7 +1117,10 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:13:45 GMT"
+ "Fri, 26 Feb 2016 02:17:48 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk9419/providers/Microsoft.DataLakeAnalytics/accounts/onesdk3068/operationresults/0?api-version=2015-10-01-preview"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1218,32 +1132,22 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeAnalytics/accounts/testaba1781?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTc4MT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/f300049e-5bfa-4848-bd5c-cf2a700f2b260?api-version=2015-10-01-preview&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9mMzAwMDQ5ZS01YmZhLTQ4NDgtYmQ1Yy1jZjJhNzAwZjJiMjYwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake01645\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"datalake01645\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba1781.konaaccountdogfood.net\",\r\n \"creationTime\": \"2015-12-11T22:13:03.9284021Z\",\r\n \"lastModifiedTime\": \"2015-12-11T22:13:03.9284021Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeAnalytics/accounts/testaba1781\",\r\n \"name\": \"testaba1781\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "664"
+ "22"
],
"Content-Type": [
"application/json"
@@ -1255,16 +1159,16 @@
"no-cache"
],
"x-ms-request-id": [
- "6de3579e-ceed-4c93-8f24-55b0e3f227bb"
+ "7ac6383a-9fa1-4bb4-871d-ad8fc121a087"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14446"
+ "14997"
],
"x-ms-correlation-request-id": [
- "2bd440fd-6dac-44ab-a0ac-7c797196c0bc"
+ "ca11c118-3efd-4808-8c01-31d63d624a50"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221802Z:2bd440fd-6dac-44ab-a0ac-7c797196c0bc"
+ "WESTUS:20160226T021819Z:ca11c118-3efd-4808-8c01-31d63d624a50"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1273,7 +1177,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:18:01 GMT"
+ "Fri, 26 Feb 2016 02:18:19 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1288,30 +1192,32 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeAnalytics/accounts/testaba1781?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTc4MT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/Jobs/7de4718f-1856-4bef-afbe-e07a9e516c8c?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvN2RlNDcxOGYtMTg1Ni00YmVmLWFmYmUtZTA3YTllNTE2YzhjP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"jobId\": \"7de4718f-1856-4bef-afbe-e07a9e516c8c\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS onesdk4850; CREATE DATABASE onesdk4850;\\r\\n\\tCREATE TABLE onesdk4850.dbo.onesdk7856\\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 HASH (Region) //Column to partition by\\r\\n\\t);\\r\\n\\tDROP FUNCTION IF EXISTS onesdk4850.dbo.onesdk5076;\\r\\n\\r\\n\\t//create table weblogs on space-delimited website log data\\r\\n\\tCREATE FUNCTION onesdk4850.dbo.onesdk5076()\\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 onesdk4850.dbo.onesdk5667 \\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 onesdk4850.dbo.onesdk8226()\\r\\n\\tAS BEGIN\\r\\n\\t CREATE VIEW onesdk4850.dbo.onesdk5667 \\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": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2451"
+ ],
+ "x-ms-client-request-id": [
+ "77a1c118-ad0b-4178-a363-a72f0462663b"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba1781' under resource group 'abarg17624' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"7de4718f-1856-4bef-afbe-e07a9e516c8c\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:00\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "162"
- ],
"Content-Type": [
"application/json; charset=utf-8"
],
@@ -1321,59 +1227,50 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "2ebbf281-6b1c-4874-8988-2231581f18fb"
- ],
- "x-ms-correlation-request-id": [
- "2ebbf281-6b1c-4874-8988-2231581f18fb"
+ "af79a1ef-8b68-46da-939c-7ea41cbe71cd"
],
- "x-ms-routing-request-id": [
- "CENTRALUS:20151211T221804Z:2ebbf281-6b1c-4874-8988-2231581f18fb"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "private"
],
"Date": [
- "Fri, 11 Dec 2015 22:18:03 GMT"
+ "Fri, 26 Feb 2016 02:20:32 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeAnalytics/accounts/testaba1781?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTc4MT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"testaba1781\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake01645\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"datalake01645\"\r\n }\r\n ],\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n }\r\n}",
+ "RequestUri": "/Jobs/7de4718f-1856-4bef-afbe-e07a9e516c8c?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvN2RlNDcxOGYtMTg1Ni00YmVmLWFmYmUtZTA3YTllNTE2YzhjP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "332"
+ "x-ms-client-request-id": [
+ "fa60a83a-990b-48c2-b889-ee437be1d024"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-request-id": [
- "4d42fddd-66e7-4458-8ed9-1baf59014536"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake01645\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"datalake01645\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeAnalytics/accounts/testaba1781\",\r\n \"name\": \"testaba1781\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"7de4718f-1856-4bef-afbe-e07a9e516c8c\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:32 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeRuntimeStatistics__.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 onesdk4850; CREATE DATABASE onesdk4850;\\n\\tCREATE TABLE onesdk4850.dbo.onesdk7856\\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 HASH (Region) //Column to partition by\\n\\t);\\n\\tDROP FUNCTION IF EXISTS onesdk4850.dbo.onesdk5076;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION onesdk4850.dbo.onesdk5076()\\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 onesdk4850.dbo.onesdk5667 \\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 onesdk4850.dbo.onesdk8226()\\n\\tAS BEGIN\\n\\t CREATE VIEW onesdk4850.dbo.onesdk5667 \\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://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:01.1120724\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "495"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1381,128 +1278,50 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/4e4f2b30-1afb-4ef0-ad97-90538dc3183c0?api-version=2015-10-01-preview&expanded=true"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "beeebad5-b77d-45a4-9cee-973617f9b41b"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1142"
+ "4f05b888-1869-4d76-96a3-4960bbf31091"
],
- "x-ms-correlation-request-id": [
- "cc16792c-71d2-4a67-8c09-5951c2b8d038"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20151211T221304Z:cc16792c-71d2-4a67-8c09-5951c2b8d038"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "private"
],
"Date": [
- "Fri, 11 Dec 2015 22:13:04 GMT"
- ],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourcegroups/abarg17624/providers/Microsoft.DataLakeAnalytics/accounts/testaba1781/operationresults/0?api-version=2015-10-01-preview"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:20:33 GMT"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/4e4f2b30-1afb-4ef0-ad97-90538dc3183c0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80ZTRmMmIzMC0xYWZiLTRlZjAtYWQ5Ny05MDUzOGRjMzE4M2MwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
+ "RequestUri": "/Jobs/7de4718f-1856-4bef-afbe-e07a9e516c8c?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvN2RlNDcxOGYtMTg1Ni00YmVmLWFmYmUtZTA3YTllNTE2YzhjP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.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": [
- "85aad3fc-18e6-4d48-ba18-51e5ffc8e094"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14721"
- ],
- "x-ms-correlation-request-id": [
- "4bac9b6b-9a2c-40d3-aad5-60aaae30400d"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20151211T221305Z:4bac9b6b-9a2c-40d3-aad5-60aaae30400d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 11 Dec 2015 22:13:04 GMT"
+ "x-ms-client-request-id": [
+ "8cc991ef-0525-4ca9-9a88-f58b041eb467"
],
- "Server": [
- "Microsoft-IIS/8.5"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/4e4f2b30-1afb-4ef0-ad97-90538dc3183c0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80ZTRmMmIzMC0xYWZiLTRlZjAtYWQ5Ny05MDUzOGRjMzE4M2MwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"7de4718f-1856-4bef-afbe-e07a9e516c8c\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:32 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeRuntimeStatistics__.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 onesdk4850; CREATE DATABASE onesdk4850;\\n\\tCREATE TABLE onesdk4850.dbo.onesdk7856\\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 HASH (Region) //Column to partition by\\n\\t);\\n\\tDROP FUNCTION IF EXISTS onesdk4850.dbo.onesdk5076;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION onesdk4850.dbo.onesdk5076()\\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 onesdk4850.dbo.onesdk5667 \\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 onesdk4850.dbo.onesdk8226()\\n\\tAS BEGIN\\n\\t CREATE VIEW onesdk4850.dbo.onesdk5667 \\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://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:06.4090399\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1510,59 +1329,50 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "3370e1c3-edaf-454a-b228-babb9416a2bb"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14717"
+ "Transfer-Encoding": [
+ "chunked"
],
- "x-ms-correlation-request-id": [
- "301faeb1-6ca1-4eb2-8b48-0f862ca17fb5"
+ "x-ms-request-id": [
+ "4ce3452e-bdef-4a08-993d-c06929015994"
],
- "x-ms-routing-request-id": [
- "CENTRALUS:20151211T221315Z:301faeb1-6ca1-4eb2-8b48-0f862ca17fb5"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "private"
],
"Date": [
- "Fri, 11 Dec 2015 22:13:15 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:20:38 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/4e4f2b30-1afb-4ef0-ad97-90538dc3183c0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80ZTRmMmIzMC0xYWZiLTRlZjAtYWQ5Ny05MDUzOGRjMzE4M2MwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
+ "RequestUri": "/Jobs/7de4718f-1856-4bef-afbe-e07a9e516c8c?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvN2RlNDcxOGYtMTg1Ni00YmVmLWFmYmUtZTA3YTllNTE2YzhjP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "11930f0a-7f94-4364-96ae-22669b260c0e"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"7de4718f-1856-4bef-afbe-e07a9e516c8c\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:32 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeRuntimeStatistics__.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 onesdk4850; CREATE DATABASE onesdk4850;\\n\\tCREATE TABLE onesdk4850.dbo.onesdk7856\\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 HASH (Region) //Column to partition by\\n\\t);\\n\\tDROP FUNCTION IF EXISTS onesdk4850.dbo.onesdk5076;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION onesdk4850.dbo.onesdk5076()\\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 onesdk4850.dbo.onesdk5667 \\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 onesdk4850.dbo.onesdk8226()\\n\\tAS BEGIN\\n\\t CREATE VIEW onesdk4850.dbo.onesdk5667 \\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://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:11.6435011\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1570,59 +1380,50 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "79f704d6-c663-462f-ab4f-293dd4e47cf3"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14710"
+ "Transfer-Encoding": [
+ "chunked"
],
- "x-ms-correlation-request-id": [
- "d5f9834e-212d-4a95-a00a-18de3441bf50"
+ "x-ms-request-id": [
+ "daac1b7d-07d8-48f6-b1c2-52ab7477af29"
],
- "x-ms-routing-request-id": [
- "CENTRALUS:20151211T221330Z:d5f9834e-212d-4a95-a00a-18de3441bf50"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "private"
],
"Date": [
- "Fri, 11 Dec 2015 22:13:30 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:20:44 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/4e4f2b30-1afb-4ef0-ad97-90538dc3183c0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80ZTRmMmIzMC0xYWZiLTRlZjAtYWQ5Ny05MDUzOGRjMzE4M2MwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
+ "RequestUri": "/Jobs/7de4718f-1856-4bef-afbe-e07a9e516c8c?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvN2RlNDcxOGYtMTg1Ni00YmVmLWFmYmUtZTA3YTllNTE2YzhjP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "ead04078-1d86-4212-8368-6389d7b9ac19"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"7de4718f-1856-4bef-afbe-e07a9e516c8c\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:32 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:509e269d-608a-4890-aefa-081dbebb29c0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"509e269d-608a-4890-aefa-081dbebb29c0\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS onesdk4850; CREATE DATABASE onesdk4850;\\n\\tCREATE TABLE onesdk4850.dbo.onesdk7856\\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 HASH (Region) //Column to partition by\\n\\t);\\n\\tDROP FUNCTION IF EXISTS onesdk4850.dbo.onesdk5076;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION onesdk4850.dbo.onesdk5076()\\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 onesdk4850.dbo.onesdk5667 \\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 onesdk4850.dbo.onesdk8226()\\n\\tAS BEGIN\\n\\t CREATE VIEW onesdk4850.dbo.onesdk5667 \\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://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/algebra.xml\",\r\n \"yarnApplicationId\": 2468,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:14.2971180\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0468767\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "22"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1630,72 +1431,47 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "ce8a95d9-6490-4dbe-a0ad-77f3f9519e9b"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14708"
+ "Transfer-Encoding": [
+ "chunked"
],
- "x-ms-correlation-request-id": [
- "ca91e53a-0dbc-4aa1-9740-262943d8b136"
+ "x-ms-request-id": [
+ "583fddf4-cfa3-41fd-8cf6-eb2b2a540976"
],
- "x-ms-routing-request-id": [
- "CENTRALUS:20151211T221345Z:ca91e53a-0dbc-4aa1-9740-262943d8b136"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "private"
],
"Date": [
- "Fri, 11 Dec 2015 22:13:45 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:20:49 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b6e85a99-efd5-4d3c-843f-51435b8472c6?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvYjZlODVhOTktZWZkNS00ZDNjLTg0M2YtNTE0MzViODQ3MmM2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"jobId\": \"b6e85a99-efd5-4d3c-843f-51435b8472c6\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS adladb012974; CREATE DATABASE adladb012974;\\r\\nCREATE TABLE adladb012974.dbo.adlatable012440\\r\\n(\\r\\n //Define schema of table\\r\\n UserId int, \\r\\n Start DateTime, \\r\\n Region string, \\r\\n Query string, \\r\\n Duration int, \\r\\n Urls string, \\r\\n ClickedUrls string,\\r\\n INDEX idx1 //Name of index\\r\\n CLUSTERED (Region ASC) //Column to cluster by\\r\\n PARTITIONED BY HASH (Region) //Column to partition by\\r\\n);\\r\\nDROP FUNCTION IF EXISTS adladb012974.dbo.adlatvf012169;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION adladb012974.dbo.adlatvf012169()\\r\\nRETURNS @result TABLE\\r\\n(\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string, \\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string, \\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string, \\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int, \\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n)\\r\\nAS\\r\\nBEGIN\\r\\n\\r\\n @result = EXTRACT\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string,\\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string,\\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string,\\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int,\\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n USING Extractors.Text(delimiter:' ');\\r\\n\\r\\nRETURN;\\r\\nEND;\\r\\nCREATE VIEW adladb012974.dbo.adlaview013025 \\r\\nAS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\nAS \\r\\nT(a, b);\\r\\nCREATE PROCEDURE adladb012974.dbo.adlaproc014280()\\r\\nAS BEGIN\\r\\n CREATE VIEW adladb012974.dbo.adlaview013025 \\r\\n AS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\n AS \\r\\n T(a, b);\\r\\nEND;\"\r\n }\r\n}",
+ "RequestUri": "/Jobs/7de4718f-1856-4bef-afbe-e07a9e516c8c?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvN2RlNDcxOGYtMTg1Ni00YmVmLWFmYmUtZTA3YTllNTE2YzhjP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-client-request-id": [
+ "99a8c3c7-895c-409a-a9cd-ae25a59ef7bd"
],
- "Content-Length": [
- "2498"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-resource-group-name": [
- "abarg17624"
- ],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b6e85a99-efd5-4d3c-843f-51435b8472c6\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:00\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"7de4718f-1856-4bef-afbe-e07a9e516c8c\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:32 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:509e269d-608a-4890-aefa-081dbebb29c0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"509e269d-608a-4890-aefa-081dbebb29c0\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS onesdk4850; CREATE DATABASE onesdk4850;\\n\\tCREATE TABLE onesdk4850.dbo.onesdk7856\\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 HASH (Region) //Column to partition by\\n\\t);\\n\\tDROP FUNCTION IF EXISTS onesdk4850.dbo.onesdk5076;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION onesdk4850.dbo.onesdk5076()\\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 onesdk4850.dbo.onesdk5667 \\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 onesdk4850.dbo.onesdk8226()\\n\\tAS BEGIN\\n\\t CREATE VIEW onesdk4850.dbo.onesdk5667 \\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://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/algebra.xml\",\r\n \"yarnApplicationId\": 2468,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:14.2971180\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0468767\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1710,7 +1486,7 @@
"chunked"
],
"x-ms-request-id": [
- "cae5c124-d310-4b99-baec-a0778f3785fb"
+ "24af3461-dfdc-4bf0-bbd2-117e68be6954"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1722,38 +1498,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:15:47 GMT"
+ "Fri, 26 Feb 2016 02:20:55 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b6e85a99-efd5-4d3c-843f-51435b8472c6?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvYjZlODVhOTktZWZkNS00ZDNjLTg0M2YtNTE0MzViODQ3MmM2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/Jobs/7de4718f-1856-4bef-afbe-e07a9e516c8c?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvN2RlNDcxOGYtMTg1Ni00YmVmLWFmYmUtZTA3YTllNTE2YzhjP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "6aec076d-6e50-4971-966a-594fada36c44"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b6e85a99-efd5-4d3c-843f-51435b8472c6\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS adladb012974; CREATE DATABASE adladb012974;\\nCREATE TABLE adladb012974.dbo.adlatable012440\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY HASH (Region) //Column to partition by\\n);\\nDROP FUNCTION IF EXISTS adladb012974.dbo.adlatvf012169;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION adladb012974.dbo.adlatvf012169()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW adladb012974.dbo.adlaview013025 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE adladb012974.dbo.adlaproc014280()\\nAS BEGIN\\n CREATE VIEW adladb012974.dbo.adlaview013025 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:00\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"7de4718f-1856-4bef-afbe-e07a9e516c8c\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:32 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:509e269d-608a-4890-aefa-081dbebb29c0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"509e269d-608a-4890-aefa-081dbebb29c0\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS onesdk4850; CREATE DATABASE onesdk4850;\\n\\tCREATE TABLE onesdk4850.dbo.onesdk7856\\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 HASH (Region) //Column to partition by\\n\\t);\\n\\tDROP FUNCTION IF EXISTS onesdk4850.dbo.onesdk5076;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION onesdk4850.dbo.onesdk5076()\\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 onesdk4850.dbo.onesdk5667 \\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 onesdk4850.dbo.onesdk8226()\\n\\tAS BEGIN\\n\\t CREATE VIEW onesdk4850.dbo.onesdk5667 \\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://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/algebra.xml\",\r\n \"yarnApplicationId\": 2468,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:14.2971180\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0468767\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1768,7 +1537,7 @@
"chunked"
],
"x-ms-request-id": [
- "c09ba410-341e-416d-aa93-4e0142277f19"
+ "2c181053-0392-47ff-b436-e9c106a27ec3"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1780,38 +1549,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:15:47 GMT"
+ "Fri, 26 Feb 2016 02:21:00 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b6e85a99-efd5-4d3c-843f-51435b8472c6?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvYjZlODVhOTktZWZkNS00ZDNjLTg0M2YtNTE0MzViODQ3MmM2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/Jobs/7de4718f-1856-4bef-afbe-e07a9e516c8c?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvN2RlNDcxOGYtMTg1Ni00YmVmLWFmYmUtZTA3YTllNTE2YzhjP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "0df15c86-2a25-44bc-824b-bc9a24cb6450"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b6e85a99-efd5-4d3c-843f-51435b8472c6\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:48 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS adladb012974; CREATE DATABASE adladb012974;\\nCREATE TABLE adladb012974.dbo.adlatable012440\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY HASH (Region) //Column to partition by\\n);\\nDROP FUNCTION IF EXISTS adladb012974.dbo.adlatvf012169;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION adladb012974.dbo.adlatvf012169()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW adladb012974.dbo.adlaview013025 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE adladb012974.dbo.adlaproc014280()\\nAS BEGIN\\n CREATE VIEW adladb012974.dbo.adlaview013025 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:05.8144805\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"7de4718f-1856-4bef-afbe-e07a9e516c8c\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:32 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:509e269d-608a-4890-aefa-081dbebb29c0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"509e269d-608a-4890-aefa-081dbebb29c0\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS onesdk4850; CREATE DATABASE onesdk4850;\\n\\tCREATE TABLE onesdk4850.dbo.onesdk7856\\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 HASH (Region) //Column to partition by\\n\\t);\\n\\tDROP FUNCTION IF EXISTS onesdk4850.dbo.onesdk5076;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION onesdk4850.dbo.onesdk5076()\\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 onesdk4850.dbo.onesdk5667 \\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 onesdk4850.dbo.onesdk8226()\\n\\tAS BEGIN\\n\\t CREATE VIEW onesdk4850.dbo.onesdk5667 \\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://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/algebra.xml\",\r\n \"yarnApplicationId\": 2468,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:14.2971180\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0468767\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1826,7 +1588,7 @@
"chunked"
],
"x-ms-request-id": [
- "ca4f05da-fda0-4565-8f76-d48b1c671683"
+ "ed30d091-236a-4a34-9345-3808983b9acd"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1838,38 +1600,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:15:54 GMT"
+ "Fri, 26 Feb 2016 02:21:05 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b6e85a99-efd5-4d3c-843f-51435b8472c6?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvYjZlODVhOTktZWZkNS00ZDNjLTg0M2YtNTE0MzViODQ3MmM2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/Jobs/7de4718f-1856-4bef-afbe-e07a9e516c8c?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvN2RlNDcxOGYtMTg1Ni00YmVmLWFmYmUtZTA3YTllNTE2YzhjP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "34322e70-759a-47b0-8cfd-7c0971242136"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b6e85a99-efd5-4d3c-843f-51435b8472c6\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:48 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS adladb012974; CREATE DATABASE adladb012974;\\nCREATE TABLE adladb012974.dbo.adlatable012440\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY HASH (Region) //Column to partition by\\n);\\nDROP FUNCTION IF EXISTS adladb012974.dbo.adlatvf012169;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION adladb012974.dbo.adlatvf012169()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW adladb012974.dbo.adlaview013025 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE adladb012974.dbo.adlaproc014280()\\nAS BEGIN\\n CREATE VIEW adladb012974.dbo.adlaview013025 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:11.0645615\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"7de4718f-1856-4bef-afbe-e07a9e516c8c\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"startTime\": \"Fri, 26 Feb 2016 02:21:07 GMT\",\r\n \"endTime\": null,\r\n \"state\": \"Running\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:32 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:509e269d-608a-4890-aefa-081dbebb29c0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:07 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"509e269d-608a-4890-aefa-081dbebb29c0\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS onesdk4850; CREATE DATABASE onesdk4850;\\n\\tCREATE TABLE onesdk4850.dbo.onesdk7856\\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 HASH (Region) //Column to partition by\\n\\t);\\n\\tDROP FUNCTION IF EXISTS onesdk4850.dbo.onesdk5076;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION onesdk4850.dbo.onesdk5076()\\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 onesdk4850.dbo.onesdk5667 \\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 onesdk4850.dbo.onesdk8226()\\n\\tAS BEGIN\\n\\t CREATE VIEW onesdk4850.dbo.onesdk5667 \\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://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/algebra.xml\",\r\n \"yarnApplicationId\": 2468,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:14.2971180\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0468767\",\r\n \"totalRunningTime\": \"00:00:03.5339890\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1884,7 +1639,7 @@
"chunked"
],
"x-ms-request-id": [
- "78a424da-a163-480a-a422-5d85607eea45"
+ "24fb10e3-3344-4896-8257-8cafb4b559c8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1896,38 +1651,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:15:58 GMT"
+ "Fri, 26 Feb 2016 02:21:10 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b6e85a99-efd5-4d3c-843f-51435b8472c6?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvYjZlODVhOTktZWZkNS00ZDNjLTg0M2YtNTE0MzViODQ3MmM2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/Jobs/7de4718f-1856-4bef-afbe-e07a9e516c8c?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvN2RlNDcxOGYtMTg1Ni00YmVmLWFmYmUtZTA3YTllNTE2YzhjP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "0fd6d6c1-abf4-4422-921d-140e42032fac"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b6e85a99-efd5-4d3c-843f-51435b8472c6\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:48 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS adladb012974; CREATE DATABASE adladb012974;\\nCREATE TABLE adladb012974.dbo.adlatable012440\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY HASH (Region) //Column to partition by\\n);\\nDROP FUNCTION IF EXISTS adladb012974.dbo.adlatvf012169;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION adladb012974.dbo.adlatvf012169()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW adladb012974.dbo.adlaview013025 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE adladb012974.dbo.adlaproc014280()\\nAS BEGIN\\n CREATE VIEW adladb012974.dbo.adlaview013025 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:16.2990112\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"7de4718f-1856-4bef-afbe-e07a9e516c8c\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"startTime\": \"Fri, 26 Feb 2016 02:21:07 GMT\",\r\n \"endTime\": \"Fri, 26 Feb 2016 02:21:10 GMT\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:31 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:32 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:509e269d-608a-4890-aefa-081dbebb29c0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:20:46 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:07 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:10 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"509e269d-608a-4890-aefa-081dbebb29c0\",\r\n \"script\": \"\\tDROP DATABASE IF EXISTS onesdk4850; CREATE DATABASE onesdk4850;\\n\\tCREATE TABLE onesdk4850.dbo.onesdk7856\\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 HASH (Region) //Column to partition by\\n\\t);\\n\\tDROP FUNCTION IF EXISTS onesdk4850.dbo.onesdk5076;\\n\\n\\t//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION onesdk4850.dbo.onesdk5076()\\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 onesdk4850.dbo.onesdk5667 \\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 onesdk4850.dbo.onesdk8226()\\n\\tAS BEGIN\\n\\t CREATE VIEW onesdk4850.dbo.onesdk5667 \\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://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/20/7de4718f-1856-4bef-afbe-e07a9e516c8c/algebra.xml\",\r\n \"yarnApplicationId\": 2468,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:14.2971180\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0468767\",\r\n \"totalRunningTime\": \"00:00:03.4531858\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1942,7 +1690,7 @@
"chunked"
],
"x-ms-request-id": [
- "c51593f2-1c92-4a63-b410-8f2e3c383b28"
+ "15e07f67-93aa-4e91-8d04-656e85bd20df"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1954,41 +1702,34 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:04 GMT"
+ "Fri, 26 Feb 2016 02:21:16 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b6e85a99-efd5-4d3c-843f-51435b8472c6?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvYjZlODVhOTktZWZkNS00ZDNjLTg0M2YtNTE0MzViODQ3MmM2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/catalog/usql/databases?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "ceeccd83-e3ab-4f22-bfbf-920384c12d38"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b6e85a99-efd5-4d3c-843f-51435b8472c6\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:48 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:05 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4c4cf00c-49a4-4bc3-9e02-31c8692c9d65\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:06 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:bl__4523021_151211000651910\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"bl__4523021_151211000651910\",\r\n \"rootProcessNodeId\": \"4c4cf00c-49a4-4bc3-9e02-31c8692c9d65\",\r\n \"script\": \"DROP DATABASE IF EXISTS adladb012974; CREATE DATABASE adladb012974;\\nCREATE TABLE adladb012974.dbo.adlatable012440\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY HASH (Region) //Column to partition by\\n);\\nDROP FUNCTION IF EXISTS adladb012974.dbo.adlatvf012169;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION adladb012974.dbo.adlatvf012169()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW adladb012974.dbo.adlaview013025 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE adladb012974.dbo.adlaproc014280()\\nAS BEGIN\\n CREATE VIEW adladb012974.dbo.adlaview013025 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/algebra.xml\",\r\n \"yarnApplicationId\": 8,\r\n \"yarnApplicationTimeStamp\": 1449871738039,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:16.7033612\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.5781331\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://onesdk3068.azuredatalakeanalytics.net/sqlip/$metadata#databases\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"onesdk3068\",\r\n \"databaseName\": \"master\",\r\n \"version\": \"a4515e5e-6f1a-4ad9-93a8-13bfb884f589\"\r\n },\r\n {\r\n \"computeAccountName\": \"onesdk3068\",\r\n \"databaseName\": \"onesdk4850\",\r\n \"version\": \"5ba50e3e-7ed0-4956-ae73-e210282a6f7d\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2000,7 +1741,10 @@
"chunked"
],
"x-ms-request-id": [
- "94d22cba-4843-427f-9d4c-6a640d1c00ae"
+ "2adcf415-dda6-49e6-af39-a85e4d13048f"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2012,41 +1756,34 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:09 GMT"
+ "Fri, 26 Feb 2016 02:21:17 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b6e85a99-efd5-4d3c-843f-51435b8472c6?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvYjZlODVhOTktZWZkNS00ZDNjLTg0M2YtNTE0MzViODQ3MmM2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/catalog/usql/databases/onesdk4850?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvb25lc2RrNDg1MD9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "3cb0dd06-d2a9-4c1d-8fe0-28a1b287ecb9"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b6e85a99-efd5-4d3c-843f-51435b8472c6\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:48 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:05 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4c4cf00c-49a4-4bc3-9e02-31c8692c9d65\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:06 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:bl__4523021_151211000651910\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"bl__4523021_151211000651910\",\r\n \"rootProcessNodeId\": \"4c4cf00c-49a4-4bc3-9e02-31c8692c9d65\",\r\n \"script\": \"DROP DATABASE IF EXISTS adladb012974; CREATE DATABASE adladb012974;\\nCREATE TABLE adladb012974.dbo.adlatable012440\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY HASH (Region) //Column to partition by\\n);\\nDROP FUNCTION IF EXISTS adladb012974.dbo.adlatvf012169;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION adladb012974.dbo.adlatvf012169()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW adladb012974.dbo.adlaview013025 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE adladb012974.dbo.adlaproc014280()\\nAS BEGIN\\n CREATE VIEW adladb012974.dbo.adlaview013025 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/algebra.xml\",\r\n \"yarnApplicationId\": 8,\r\n \"yarnApplicationTimeStamp\": 1449871738039,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:16.7033612\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.5781331\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://onesdk3068.azuredatalakeanalytics.net/sqlip/$metadata#databases/$entity\",\r\n \"computeAccountName\": \"onesdk3068\",\r\n \"databaseName\": \"onesdk4850\",\r\n \"version\": \"5ba50e3e-7ed0-4956-ae73-e210282a6f7d\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2058,7 +1795,10 @@
"chunked"
],
"x-ms-request-id": [
- "a7a03185-aabb-491d-a6d4-426e5a8a7287"
+ "c91de6ad-6d8e-4ea1-a3a0-0714b2b8e65f"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2070,41 +1810,34 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:15 GMT"
+ "Fri, 26 Feb 2016 02:21:17 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b6e85a99-efd5-4d3c-843f-51435b8472c6?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvYjZlODVhOTktZWZkNS00ZDNjLTg0M2YtNTE0MzViODQ3MmM2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/catalog/usql/databases/onesdk4850/schemas/dbo/tables?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvb25lc2RrNDg1MC9zY2hlbWFzL2Riby90YWJsZXM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "d3e980af-a740-44af-bce2-44a2e1cf3d4c"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b6e85a99-efd5-4d3c-843f-51435b8472c6\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:48 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:05 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4c4cf00c-49a4-4bc3-9e02-31c8692c9d65\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:06 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:bl__4523021_151211000651910\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"bl__4523021_151211000651910\",\r\n \"rootProcessNodeId\": \"4c4cf00c-49a4-4bc3-9e02-31c8692c9d65\",\r\n \"script\": \"DROP DATABASE IF EXISTS adladb012974; CREATE DATABASE adladb012974;\\nCREATE TABLE adladb012974.dbo.adlatable012440\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY HASH (Region) //Column to partition by\\n);\\nDROP FUNCTION IF EXISTS adladb012974.dbo.adlatvf012169;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION adladb012974.dbo.adlatvf012169()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW adladb012974.dbo.adlaview013025 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE adladb012974.dbo.adlaproc014280()\\nAS BEGIN\\n CREATE VIEW adladb012974.dbo.adlaview013025 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/algebra.xml\",\r\n \"yarnApplicationId\": 8,\r\n \"yarnApplicationTimeStamp\": 1449871738039,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:16.7033612\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.5781331\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://onesdk3068.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"onesdk3068\",\r\n \"databaseName\": \"onesdk4850\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"onesdk7856\",\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 ],\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\": \"c5cad99b-180e-4129-bce7-391e3966bb17\",\r\n \"partitionKeyList\": [],\r\n \"streamNames\": [],\r\n \"distributionGroups\": [],\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 \"version\": \"db821f50-23f2-44e5-825e-5b620c44000f\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2116,7 +1849,10 @@
"chunked"
],
"x-ms-request-id": [
- "332ad326-069a-42d7-a6d4-020cab8d5ae1"
+ "18cb0ac7-c63e-4c0c-9f98-d5c263beaf81"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2128,41 +1864,34 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:20 GMT"
+ "Fri, 26 Feb 2016 02:21:18 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b6e85a99-efd5-4d3c-843f-51435b8472c6?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvYjZlODVhOTktZWZkNS00ZDNjLTg0M2YtNTE0MzViODQ3MmM2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/catalog/usql/databases/onesdk4850/schemas/dbo/tables/onesdk7856?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvb25lc2RrNDg1MC9zY2hlbWFzL2Riby90YWJsZXMvb25lc2RrNzg1Nj9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "b349502f-439e-4bbd-999d-7adae5e3a17c"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b6e85a99-efd5-4d3c-843f-51435b8472c6\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"startTime\": \"Fri, 11 Dec 2015 22:16:22 GMT\",\r\n \"endTime\": null,\r\n \"state\": \"Running\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:48 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:05 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4c4cf00c-49a4-4bc3-9e02-31c8692c9d65\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:06 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:bl__4523021_151211000651910\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:22 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"bl__4523021_151211000651910\",\r\n \"rootProcessNodeId\": \"4c4cf00c-49a4-4bc3-9e02-31c8692c9d65\",\r\n \"script\": \"DROP DATABASE IF EXISTS adladb012974; CREATE DATABASE adladb012974;\\nCREATE TABLE adladb012974.dbo.adlatable012440\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY HASH (Region) //Column to partition by\\n);\\nDROP FUNCTION IF EXISTS adladb012974.dbo.adlatvf012169;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION adladb012974.dbo.adlatvf012169()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW adladb012974.dbo.adlaview013025 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE adladb012974.dbo.adlaproc014280()\\nAS BEGIN\\n CREATE VIEW adladb012974.dbo.adlaview013025 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/algebra.xml\",\r\n \"yarnApplicationId\": 8,\r\n \"yarnApplicationTimeStamp\": 1449871738039,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:16.7033612\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.5781331\",\r\n \"totalRunningTime\": \"00:00:03.6894712\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://onesdk3068.azuredatalakeanalytics.net/sqlip/$metadata#tables/$entity\",\r\n \"computeAccountName\": \"onesdk3068\",\r\n \"databaseName\": \"onesdk4850\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"onesdk7856\",\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 ],\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\": \"c5cad99b-180e-4129-bce7-391e3966bb17\",\r\n \"partitionKeyList\": [],\r\n \"streamNames\": [],\r\n \"distributionGroups\": [],\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 \"version\": \"db821f50-23f2-44e5-825e-5b620c44000f\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2174,7 +1903,10 @@
"chunked"
],
"x-ms-request-id": [
- "46946af1-7110-4501-bb80-dc583e8d3f2f"
+ "e358552b-6092-4550-97a0-0701bc353afa"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2186,41 +1918,34 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:26 GMT"
+ "Fri, 26 Feb 2016 02:21:18 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/b6e85a99-efd5-4d3c-843f-51435b8472c6?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvYjZlODVhOTktZWZkNS00ZDNjLTg0M2YtNTE0MzViODQ3MmM2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/catalog/usql/databases/onesdk4850/schemas/dbo/tablevaluedfunctions?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvb25lc2RrNDg1MC9zY2hlbWFzL2Riby90YWJsZXZhbHVlZGZ1bmN0aW9ucz9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "2ff1ddae-2c5f-4360-ab20-17d77adff861"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"b6e85a99-efd5-4d3c-843f-51435b8472c6\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"startTime\": \"Fri, 11 Dec 2015 22:16:22 GMT\",\r\n \"endTime\": \"Fri, 11 Dec 2015 22:16:25 GMT\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:47 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:15:48 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:05 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4c4cf00c-49a4-4bc3-9e02-31c8692c9d65\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:06 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:bl__4523021_151211000651910\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:22 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:25 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"bl__4523021_151211000651910\",\r\n \"rootProcessNodeId\": \"4c4cf00c-49a4-4bc3-9e02-31c8692c9d65\",\r\n \"script\": \"DROP DATABASE IF EXISTS adladb012974; CREATE DATABASE adladb012974;\\nCREATE TABLE adladb012974.dbo.adlatable012440\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY HASH (Region) //Column to partition by\\n);\\nDROP FUNCTION IF EXISTS adladb012974.dbo.adlatvf012169;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION adladb012974.dbo.adlatvf012169()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW adladb012974.dbo.adlaview013025 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE adladb012974.dbo.adlaproc014280()\\nAS BEGIN\\n CREATE VIEW adladb012974.dbo.adlaview013025 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/15/b6e85a99-efd5-4d3c-843f-51435b8472c6/algebra.xml\",\r\n \"yarnApplicationId\": 8,\r\n \"yarnApplicationTimeStamp\": 1449871738039,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:16.7033612\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.5781331\",\r\n \"totalRunningTime\": \"00:00:03.2031703\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://onesdk3068.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"onesdk3068\",\r\n \"databaseName\": \"onesdk4850\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"onesdk5076\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION onesdk4850.dbo.onesdk5076()\\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\": \"d80915cc-07e8-40e2-ba67-08647b91c82e\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -2232,7 +1957,10 @@
"chunked"
],
"x-ms-request-id": [
- "a9826b30-ffc8-4655-aaf7-99f254376373"
+ "3fbfde39-95e6-4992-ad11-9bec8f68b6af"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2244,38 +1972,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:30 GMT"
+ "Fri, 26 Feb 2016 02:21:18 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/catalog/usql/databases/onesdk4850/schemas/dbo/tablevaluedfunctions/onesdk5076?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvb25lc2RrNDg1MC9zY2hlbWFzL2Riby90YWJsZXZhbHVlZGZ1bmN0aW9ucy9vbmVzZGs1MDc2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "a05386f5-aa05-41e9-a024-22f5cfcb001f"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba1781.konaaccountdogfood.net/sqlip/$metadata#databases\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba1781\",\r\n \"databaseName\": \"adladb012974\",\r\n \"version\": \"53598104-203c-48eb-b3e4-e151a63e2855\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba1781\",\r\n \"databaseName\": \"master\",\r\n \"version\": \"293a3a3a-7204-4ba7-be35-b409fbe908ee\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://onesdk3068.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions/$entity\",\r\n \"computeAccountName\": \"onesdk3068\",\r\n \"databaseName\": \"onesdk4850\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"onesdk5076\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\n\\tCREATE FUNCTION onesdk4850.dbo.onesdk5076()\\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\": \"d80915cc-07e8-40e2-ba67-08647b91c82e\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2290,7 +2011,7 @@
"chunked"
],
"x-ms-request-id": [
- "78a96cb1-bab1-4427-9ecf-1ec39ec1f0c2"
+ "8e24a6d7-e464-44b2-8ff9-6a2c245d43be"
],
"OData-Version": [
"4.0"
@@ -2305,38 +2026,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:31 GMT"
+ "Fri, 26 Feb 2016 02:21:18 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/adladb012974?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvYWRsYWRiMDEyOTc0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/catalog/usql/databases/onesdk4850/schemas/dbo/procedures?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvb25lc2RrNDg1MC9zY2hlbWFzL2Riby9wcm9jZWR1cmVzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "c05d08ab-e7d4-44a0-9642-46d64a742949"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba1781.konaaccountdogfood.net/sqlip/$metadata#databases/$entity\",\r\n \"computeAccountName\": \"testaba1781\",\r\n \"databaseName\": \"adladb012974\",\r\n \"version\": \"53598104-203c-48eb-b3e4-e151a63e2855\"\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://onesdk3068.azuredatalakeanalytics.net/sqlip/$metadata#procedures\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"onesdk3068\",\r\n \"databaseName\": \"onesdk4850\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"onesdk8226\",\r\n \"definition\": \"CREATE PROCEDURE onesdk4850.dbo.onesdk8226()\\n\\tAS BEGIN\\n\\t CREATE VIEW onesdk4850.dbo.onesdk5667 \\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\": \"d9448b04-f2b6-41c8-994b-9cf23caaedd5\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2351,7 +2065,7 @@
"chunked"
],
"x-ms-request-id": [
- "72dfd115-efef-482f-8654-bfddadc10aa6"
+ "ab0ca222-7e1a-4b99-867a-644a20a2bf62"
],
"OData-Version": [
"4.0"
@@ -2366,38 +2080,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:31 GMT"
+ "Fri, 26 Feb 2016 02:21:19 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/adladb012974/schemas/dbo/tables?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvYWRsYWRiMDEyOTc0L3NjaGVtYXMvZGJvL3RhYmxlcz9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/catalog/usql/databases/onesdk4850/schemas/dbo/procedures/onesdk8226?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvb25lc2RrNDg1MC9zY2hlbWFzL2Riby9wcm9jZWR1cmVzL29uZXNkazgyMjY/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "44993bf2-e5b5-4794-bda0-df216186b49a"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba1781.konaaccountdogfood.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba1781\",\r\n \"databaseName\": \"adladb012974\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"adlatable012440\",\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 ],\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\": \"0e2f0ed1-ef86-4949-9629-4f3f690f2051\",\r\n \"partitionKeyList\": [],\r\n \"streamNames\": [],\r\n \"distributionGroups\": [],\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 \"version\": \"d5df8381-d115-4655-8727-1a15f7267702\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://onesdk3068.azuredatalakeanalytics.net/sqlip/$metadata#procedures/$entity\",\r\n \"computeAccountName\": \"onesdk3068\",\r\n \"databaseName\": \"onesdk4850\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"onesdk8226\",\r\n \"definition\": \"CREATE PROCEDURE onesdk4850.dbo.onesdk8226()\\n\\tAS BEGIN\\n\\t CREATE VIEW onesdk4850.dbo.onesdk5667 \\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\": \"d9448b04-f2b6-41c8-994b-9cf23caaedd5\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2412,7 +2119,7 @@
"chunked"
],
"x-ms-request-id": [
- "71987a41-a7b6-49ca-823a-5c134f900585"
+ "505f0a97-a58b-44f4-9c9a-732fd3a1ac7b"
],
"OData-Version": [
"4.0"
@@ -2427,38 +2134,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:33 GMT"
+ "Fri, 26 Feb 2016 02:21:19 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/adladb012974/schemas/dbo/tables/adlatable012440?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvYWRsYWRiMDEyOTc0L3NjaGVtYXMvZGJvL3RhYmxlcy9hZGxhdGFibGUwMTI0NDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/catalog/usql/databases/onesdk4850/schemas/dbo/views?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvb25lc2RrNDg1MC9zY2hlbWFzL2Riby92aWV3cz9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "93469217-677e-47a9-b2c3-2ca876de4ba2"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba1781.konaaccountdogfood.net/sqlip/$metadata#tables/$entity\",\r\n \"computeAccountName\": \"testaba1781\",\r\n \"databaseName\": \"adladb012974\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"adlatable012440\",\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 ],\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\": \"0e2f0ed1-ef86-4949-9629-4f3f690f2051\",\r\n \"partitionKeyList\": [],\r\n \"streamNames\": [],\r\n \"distributionGroups\": [],\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 \"version\": \"d5df8381-d115-4655-8727-1a15f7267702\"\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://onesdk3068.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"onesdk3068\",\r\n \"databaseName\": \"onesdk4850\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"onesdk5667\",\r\n \"definition\": \"CREATE VIEW onesdk4850.dbo.onesdk5667 \\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\": \"29e3a2d7-5bc1-40cd-a299-f07dc5818ae1\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2473,7 +2173,7 @@
"chunked"
],
"x-ms-request-id": [
- "ca54600a-53bc-475a-a82a-46f56de10a81"
+ "171775a8-c209-40c2-bc06-e3f826152e2d"
],
"OData-Version": [
"4.0"
@@ -2488,38 +2188,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:33 GMT"
+ "Fri, 26 Feb 2016 02:21:20 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/adladb012974/schemas/dbo/tablevaluedfunctions?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvYWRsYWRiMDEyOTc0L3NjaGVtYXMvZGJvL3RhYmxldmFsdWVkZnVuY3Rpb25zP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/catalog/usql/databases/onesdk4850/schemas/dbo/views/onesdk5667?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvb25lc2RrNDg1MC9zY2hlbWFzL2Riby92aWV3cy9vbmVzZGs1NjY3P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "cb80d702-5be8-43b0-9855-5aa6f6ddf44b"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba1781.konaaccountdogfood.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba1781\",\r\n \"databaseName\": \"adladb012974\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"adlatvf012169\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION adladb012974.dbo.adlatvf012169()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\",\r\n \"version\": \"971be41b-c75a-4efe-9c4b-20b9b22744e3\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://onesdk3068.azuredatalakeanalytics.net/sqlip/$metadata#views/$entity\",\r\n \"computeAccountName\": \"onesdk3068\",\r\n \"databaseName\": \"onesdk4850\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"onesdk5667\",\r\n \"definition\": \"CREATE VIEW onesdk4850.dbo.onesdk5667 \\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\": \"29e3a2d7-5bc1-40cd-a299-f07dc5818ae1\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2534,7 +2227,7 @@
"chunked"
],
"x-ms-request-id": [
- "ff154aef-f30c-4a8f-a387-01b9df2f40a8"
+ "bb34096e-9259-4b24-bb02-9402688a2ccd"
],
"OData-Version": [
"4.0"
@@ -2549,42 +2242,38 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:33 GMT"
+ "Fri, 26 Feb 2016 02:21:20 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/adladb012974/schemas/dbo/tablevaluedfunctions/adlatvf012169?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvYWRsYWRiMDEyOTc0L3NjaGVtYXMvZGJvL3RhYmxldmFsdWVkZnVuY3Rpb25zL2FkbGF0dmYwMTIxNjk/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/catalog/usql/databases/onesdk4850/secrets/onesdk9052?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvb25lc2RrNDg1MC9zZWNyZXRzL29uZXNkazkwNTI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"password\": \"onesdk6290\",\r\n \"uri\": \"https://pstest.contoso.com/\"\r\n}",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
+ "Content-Length": [
+ "73"
+ ],
+ "x-ms-client-request-id": [
+ "cdae1bc6-25d1-4c48-ad7d-b1542bdcaa8a"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba1781.konaaccountdogfood.net/sqlip/$metadata#tablevaluedfunctions/$entity\",\r\n \"computeAccountName\": \"testaba1781\",\r\n \"databaseName\": \"adladb012974\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"adlatvf012169\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION adladb012974.dbo.adlatvf012169()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\",\r\n \"version\": \"971be41b-c75a-4efe-9c4b-20b9b22744e3\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
- ],
"Expires": [
"-1"
],
@@ -2595,10 +2284,7 @@
"chunked"
],
"x-ms-request-id": [
- "0b4daf24-a67e-4d17-9b49-56f4b367a47a"
- ],
- "OData-Version": [
- "4.0"
+ "bf9e7241-57a6-486b-b6b4-518695e94458"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2610,41 +2296,34 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:34 GMT"
+ "Fri, 26 Feb 2016 02:21:21 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/adladb012974/schemas/dbo/procedures?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvYWRsYWRiMDEyOTc0L3NjaGVtYXMvZGJvL3Byb2NlZHVyZXM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/catalog/usql/databases/onesdk4850/secrets/onesdk9052?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvb25lc2RrNDg1MC9zZWNyZXRzL29uZXNkazkwNTI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "fc404832-4eec-4424-a995-35705c85794e"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba1781.konaaccountdogfood.net/sqlip/$metadata#procedures\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba1781\",\r\n \"databaseName\": \"adladb012974\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"adlaproc014280\",\r\n \"definition\": \"CREATE PROCEDURE adladb012974.dbo.adlaproc014280()\\nAS BEGIN\\n CREATE VIEW adladb012974.dbo.adlaview013025 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"version\": \"8ad306a6-1efc-4648-a09c-7a01e9a468a8\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"creationTime\": \"Fri, 26 Feb 2016 02:21:21 GMT\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -2656,10 +2335,7 @@
"chunked"
],
"x-ms-request-id": [
- "1666f633-2862-4c70-aeb0-4809bd2b0872"
- ],
- "OData-Version": [
- "4.0"
+ "d3f9a071-ff7d-4e86-9783-74122a697710"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2671,41 +2347,34 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:34 GMT"
+ "Fri, 26 Feb 2016 02:21:22 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/adladb012974/schemas/dbo/procedures/adlaproc014280?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvYWRsYWRiMDEyOTc0L3NjaGVtYXMvZGJvL3Byb2NlZHVyZXMvYWRsYXByb2MwMTQyODA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/catalog/usql/databases/onesdk4850/secrets/onesdk9052?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvb25lc2RrNDg1MC9zZWNyZXRzL29uZXNkazkwNTI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "e545abe6-8d26-4779-9bc9-662765af13d9"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba1781.konaaccountdogfood.net/sqlip/$metadata#procedures/$entity\",\r\n \"computeAccountName\": \"testaba1781\",\r\n \"databaseName\": \"adladb012974\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"adlaproc014280\",\r\n \"definition\": \"CREATE PROCEDURE adladb012974.dbo.adlaproc014280()\\nAS BEGIN\\n CREATE VIEW adladb012974.dbo.adlaview013025 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"version\": \"8ad306a6-1efc-4648-a09c-7a01e9a468a8\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'onesdk9052' does not exist.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; odata.metadata=minimal; odata.streaming=true"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -2717,10 +2386,7 @@
"chunked"
],
"x-ms-request-id": [
- "ed670d31-dc5f-459c-a2ce-ef009a3796bd"
- ],
- "OData-Version": [
- "4.0"
+ "f258dcaa-5440-4ba8-b2d1-13d2717194f3"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2732,41 +2398,40 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:34 GMT"
+ "Fri, 26 Feb 2016 02:22:43 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/catalog/usql/databases/adladb012974/schemas/dbo/views?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvYWRsYWRiMDEyOTc0L3NjaGVtYXMvZGJvL3ZpZXdzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/Jobs/fa3f5661-b647-420b-be53-1c62018c4a47?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZmEzZjU2NjEtYjY0Ny00MjBiLWJlNTMtMWM2MjAxOGM0YTQ3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"jobId\": \"fa3f5661-b647-420b-be53-1c62018c4a47\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\tUSE onesdk4850;\\r\\n\\tCREATE CREDENTIAL onesdk1533 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"onesdk9052\\\";\"\r\n }\r\n}",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
+ "Content-Length": [
+ "337"
+ ],
+ "x-ms-client-request-id": [
+ "5443e70a-214a-4836-abc3-4d569e98b27c"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba1781.konaaccountdogfood.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba1781\",\r\n \"databaseName\": \"adladb012974\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"adlaview013025\",\r\n \"definition\": \"CREATE VIEW adladb012974.dbo.adlaview013025 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"version\": \"da3e411c-43a0-415d-9065-e75353b34531\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"fa3f5661-b647-420b-be53-1c62018c4a47\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:21:22 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:00\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00: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"
@@ -2778,10 +2443,7 @@
"chunked"
],
"x-ms-request-id": [
- "2b74d297-7fea-4a01-8847-7dc567adff09"
- ],
- "OData-Version": [
- "4.0"
+ "8dacdbee-d320-44ab-a57c-1c6e76e70b49"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2793,41 +2455,34 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:35 GMT"
+ "Fri, 26 Feb 2016 02:21:23 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/adladb012974/schemas/dbo/views/adlaview013025?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvYWRsYWRiMDEyOTc0L3NjaGVtYXMvZGJvL3ZpZXdzL2FkbGF2aWV3MDEzMDI1P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/Jobs/fa3f5661-b647-420b-be53-1c62018c4a47?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZmEzZjU2NjEtYjY0Ny00MjBiLWJlNTMtMWM2MjAxOGM0YTQ3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "23c95a78-0b76-4e6d-a6a3-0001a24a3906"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba1781.konaaccountdogfood.net/sqlip/$metadata#views/$entity\",\r\n \"computeAccountName\": \"testaba1781\",\r\n \"databaseName\": \"adladb012974\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"adlaview013025\",\r\n \"definition\": \"CREATE VIEW adladb012974.dbo.adlaview013025 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"version\": \"da3e411c-43a0-415d-9065-e75353b34531\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"fa3f5661-b647-420b-be53-1c62018c4a47\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:21:22 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tCREATE CREDENTIAL onesdk1533 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"onesdk9052\\\";\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:00.1119855\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00: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"
@@ -2839,10 +2494,7 @@
"chunked"
],
"x-ms-request-id": [
- "b2f3406f-8f29-4090-9896-c06cec82198b"
- ],
- "OData-Version": [
- "4.0"
+ "23852491-405d-48a0-b026-80fe93f8d328"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2854,45 +2506,35 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:35 GMT"
+ "Fri, 26 Feb 2016 02:21:23 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/adladb012974/secrets/adlasecret019923?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvYWRsYWRiMDEyOTc0L3NlY3JldHMvYWRsYXNlY3JldDAxOTkyMz9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"adlasecretpwd012819\",\r\n \"uri\": \"https://pstest.contoso.com/\"\r\n}",
+ "RequestUri": "/Jobs/fa3f5661-b647-420b-be53-1c62018c4a47?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZmEzZjU2NjEtYjY0Ny00MjBiLWJlNTMtMWM2MjAxOGM0YTQ3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json"
+ "x-ms-client-request-id": [
+ "5c0f7e4a-b5ac-44cd-b1e3-04efd133d004"
],
- "Content-Length": [
- "82"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-resource-group-name": [
- "abarg17624"
- ],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"jobId\": \"fa3f5661-b647-420b-be53-1c62018c4a47\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:21:22 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tCREATE CREDENTIAL onesdk1533 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"onesdk9052\\\";\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:07.5964913\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
"Expires": [
"-1"
],
@@ -2903,7 +2545,7 @@
"chunked"
],
"x-ms-request-id": [
- "2cd8b7f0-4a6d-4ac0-9dc9-ca5702292e14"
+ "1a34b15a-d779-4b39-899d-501abd50a691"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2915,38 +2557,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:36 GMT"
+ "Fri, 26 Feb 2016 02:21:31 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/adladb012974/secrets/adlasecret019923?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvYWRsYWRiMDEyOTc0L3NlY3JldHMvYWRsYXNlY3JldDAxOTkyMz9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/Jobs/fa3f5661-b647-420b-be53-1c62018c4a47?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZmEzZjU2NjEtYjY0Ny00MjBiLWJlNTMtMWM2MjAxOGM0YTQ3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "5d7f8977-fe38-4803-95db-73f4d1f85c7c"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"creationTime\": \"Fri, 11 Dec 2015 22:16:36 GMT\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"fa3f5661-b647-420b-be53-1c62018c4a47\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:21:22 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tCREATE CREDENTIAL onesdk1533 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"onesdk9052\\\";\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:12.8309530\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2961,7 +2596,7 @@
"chunked"
],
"x-ms-request-id": [
- "355dbf14-b34f-4c9d-ae4c-567b9d90e5d0"
+ "23958520-ab22-484a-b389-731346528480"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2973,38 +2608,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:36 GMT"
+ "Fri, 26 Feb 2016 02:21:36 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/adladb012974/secrets/adlasecret019923?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvYWRsYWRiMDEyOTc0L3NlY3JldHMvYWRsYXNlY3JldDAxOTkyMz9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/Jobs/fa3f5661-b647-420b-be53-1c62018c4a47?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZmEzZjU2NjEtYjY0Ny00MjBiLWJlNTMtMWM2MjAxOGM0YTQ3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "415ad6b6-e10b-40c7-aab6-69823ca32ab9"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'adlasecret019923' does not exist.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"fa3f5661-b647-420b-be53-1c62018c4a47\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:21:22 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:c1e0a4b0-e73d-4e58-86a7-ad06d1ef6b0e\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"c1e0a4b0-e73d-4e58-86a7-ad06d1ef6b0e\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tCREATE CREDENTIAL onesdk1533 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"onesdk9052\\\";\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/algebra.xml\",\r\n \"yarnApplicationId\": 2472,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:13.5314230\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0312454\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3019,7 +2647,7 @@
"chunked"
],
"x-ms-request-id": [
- "51397815-a8da-477e-8565-bf04a7664d64"
+ "6d67687b-7697-4dcd-bd40-47bd6a39844f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3031,44 +2659,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:18:01 GMT"
+ "Fri, 26 Feb 2016 02:21:41 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/Jobs/874b05b3-deec-4af0-9d94-eaf7f54f01c8?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvODc0YjA1YjMtZGVlYy00YWYwLTlkOTQtZWFmN2Y1NGYwMWM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"jobId\": \"874b05b3-deec-4af0-9d94-eaf7f54f01c8\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"USE adladb012974;\\r\\nCREATE CREDENTIAL adlacred012412 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"adlasecret019923\\\";\"\r\n }\r\n}",
+ "RequestUri": "/Jobs/fa3f5661-b647-420b-be53-1c62018c4a47?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZmEzZjU2NjEtYjY0Ny00MjBiLWJlNTMtMWM2MjAxOGM0YTQ3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-client-request-id": [
+ "a0fcbbf3-fe7e-40aa-8de1-9f84755d956f"
],
- "Content-Length": [
- "345"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-resource-group-name": [
- "abarg17624"
- ],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"874b05b3-deec-4af0-9d94-eaf7f54f01c8\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:00\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"fa3f5661-b647-420b-be53-1c62018c4a47\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:21:22 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:c1e0a4b0-e73d-4e58-86a7-ad06d1ef6b0e\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"c1e0a4b0-e73d-4e58-86a7-ad06d1ef6b0e\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tCREATE CREDENTIAL onesdk1533 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"onesdk9052\\\";\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/algebra.xml\",\r\n \"yarnApplicationId\": 2472,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:13.5314230\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0312454\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3083,7 +2698,7 @@
"chunked"
],
"x-ms-request-id": [
- "03662e59-76b6-4253-86e0-2a351f517df6"
+ "79702d64-8188-4066-bc2a-2ef5da0b1a55"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3095,38 +2710,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:37 GMT"
+ "Fri, 26 Feb 2016 02:21:47 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/874b05b3-deec-4af0-9d94-eaf7f54f01c8?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvODc0YjA1YjMtZGVlYy00YWYwLTlkOTQtZWFmN2Y1NGYwMWM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/Jobs/fa3f5661-b647-420b-be53-1c62018c4a47?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZmEzZjU2NjEtYjY0Ny00MjBiLWJlNTMtMWM2MjAxOGM0YTQ3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "0eace109-670f-4372-938e-cf956c280f04"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"874b05b3-deec-4af0-9d94-eaf7f54f01c8\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE adladb012974;\\nCREATE CREDENTIAL adlacred012412 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"adlasecret019923\\\";\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:00\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"fa3f5661-b647-420b-be53-1c62018c4a47\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:21:22 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:c1e0a4b0-e73d-4e58-86a7-ad06d1ef6b0e\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"c1e0a4b0-e73d-4e58-86a7-ad06d1ef6b0e\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tCREATE CREDENTIAL onesdk1533 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"onesdk9052\\\";\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/algebra.xml\",\r\n \"yarnApplicationId\": 2472,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:13.5314230\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0312454\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3141,7 +2749,7 @@
"chunked"
],
"x-ms-request-id": [
- "55612cbd-5766-438f-ac92-29e63b12e540"
+ "14fb926d-4322-46f1-bb00-da771a4aac6e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3153,38 +2761,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:38 GMT"
+ "Fri, 26 Feb 2016 02:21:52 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/874b05b3-deec-4af0-9d94-eaf7f54f01c8?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvODc0YjA1YjMtZGVlYy00YWYwLTlkOTQtZWFmN2Y1NGYwMWM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/Jobs/fa3f5661-b647-420b-be53-1c62018c4a47?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZmEzZjU2NjEtYjY0Ny00MjBiLWJlNTMtMWM2MjAxOGM0YTQ3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "2fbe4ce9-1ab2-4593-a31c-c544748b2c48"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"874b05b3-deec-4af0-9d94-eaf7f54f01c8\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:38 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE adladb012974;\\nCREATE CREDENTIAL adlacred012412 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"adlasecret019923\\\";\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:05.3301218\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"fa3f5661-b647-420b-be53-1c62018c4a47\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:21:22 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:c1e0a4b0-e73d-4e58-86a7-ad06d1ef6b0e\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"c1e0a4b0-e73d-4e58-86a7-ad06d1ef6b0e\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tCREATE CREDENTIAL onesdk1533 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"onesdk9052\\\";\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/algebra.xml\",\r\n \"yarnApplicationId\": 2472,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:13.5314230\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0312454\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3199,7 +2800,7 @@
"chunked"
],
"x-ms-request-id": [
- "523ec335-42e1-45df-8664-ccec6d87b854"
+ "f810fae0-bd62-4165-bc8c-3d596c099ebc"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3211,38 +2812,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:43 GMT"
+ "Fri, 26 Feb 2016 02:21:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/874b05b3-deec-4af0-9d94-eaf7f54f01c8?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvODc0YjA1YjMtZGVlYy00YWYwLTlkOTQtZWFmN2Y1NGYwMWM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/Jobs/fa3f5661-b647-420b-be53-1c62018c4a47?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZmEzZjU2NjEtYjY0Ny00MjBiLWJlNTMtMWM2MjAxOGM0YTQ3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "a9d0460d-43bd-4e77-b445-9e579febb8cf"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"874b05b3-deec-4af0-9d94-eaf7f54f01c8\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:38 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE adladb012974;\\nCREATE CREDENTIAL adlacred012412 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"adlasecret019923\\\";\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:10.5802001\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"fa3f5661-b647-420b-be53-1c62018c4a47\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:21:22 GMT\",\r\n \"startTime\": \"Fri, 26 Feb 2016 02:21:59 GMT\",\r\n \"endTime\": \"Fri, 26 Feb 2016 02:21:59 GMT\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:23 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:c1e0a4b0-e73d-4e58-86a7-ad06d1ef6b0e\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:59 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:21:59 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"c1e0a4b0-e73d-4e58-86a7-ad06d1ef6b0e\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tCREATE CREDENTIAL onesdk1533 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"onesdk9052\\\";\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/21/fa3f5661-b647-420b-be53-1c62018c4a47/algebra.xml\",\r\n \"yarnApplicationId\": 2472,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:13.5314230\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0312454\",\r\n \"totalRunningTime\": \"00:00:00.0624995\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3257,7 +2851,7 @@
"chunked"
],
"x-ms-request-id": [
- "9bffb34b-d16d-4952-bb3e-8da6ab401b9d"
+ "5bd95491-a7d1-4a6b-a722-679b86e65b29"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3269,41 +2863,34 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:49 GMT"
+ "Fri, 26 Feb 2016 02:22:02 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/874b05b3-deec-4af0-9d94-eaf7f54f01c8?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvODc0YjA1YjMtZGVlYy00YWYwLTlkOTQtZWFmN2Y1NGYwMWM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/catalog/usql/databases/onesdk4850/credentials?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvb25lc2RrNDg1MC9jcmVkZW50aWFscz9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "7e1cb9eb-ed8c-4714-be4f-a1750e430b9a"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"874b05b3-deec-4af0-9d94-eaf7f54f01c8\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:38 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__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://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:15.7990242\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://onesdk3068.azuredatalakeanalytics.net/sqlip/$metadata#credentials\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"onesdk3068\",\r\n \"databaseName\": \"onesdk4850\",\r\n \"credentialName\": \"onesdk1533\",\r\n \"userName\": \"scope@rkm4grspxa\",\r\n \"identity\": \"onesdk9052\",\r\n \"version\": \"e405cffe-08d0-4d3d-9015-8191268d3c42\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3315,7 +2902,10 @@
"chunked"
],
"x-ms-request-id": [
- "7b78af8f-4f60-4a4b-8203-85000185bcf9"
+ "911cf4bd-14ac-4278-bfac-a44c0646cc0c"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3327,41 +2917,34 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:54 GMT"
+ "Fri, 26 Feb 2016 02:22:03 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/874b05b3-deec-4af0-9d94-eaf7f54f01c8?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvODc0YjA1YjMtZGVlYy00YWYwLTlkOTQtZWFmN2Y1NGYwMWM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/catalog/usql/databases/onesdk4850/credentials/onesdk1533?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvb25lc2RrNDg1MC9jcmVkZW50aWFscy9vbmVzZGsxNTMzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "1d403fda-da99-4a74-86f2-14c5682ad141"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"874b05b3-deec-4af0-9d94-eaf7f54f01c8\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:38 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:54 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:55 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:6895a250-3fab-4788-885e-fb0aea85ac6b\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:55 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:bl__4523021_151211000651910\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"bl__4523021_151211000651910\",\r\n \"rootProcessNodeId\": \"6895a250-3fab-4788-885e-fb0aea85ac6b\",\r\n \"script\": \"USE adladb012974;\\nCREATE CREDENTIAL adlacred012412 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"adlasecret019923\\\";\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/algebra.xml\",\r\n \"yarnApplicationId\": 9,\r\n \"yarnApplicationTimeStamp\": 1449871738039,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:16.2033543\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.7500081\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://onesdk3068.azuredatalakeanalytics.net/sqlip/$metadata#credentials/$entity\",\r\n \"computeAccountName\": \"onesdk3068\",\r\n \"databaseName\": \"onesdk4850\",\r\n \"credentialName\": \"onesdk1533\",\r\n \"userName\": \"scope@rkm4grspxa\",\r\n \"identity\": \"onesdk9052\",\r\n \"version\": \"e405cffe-08d0-4d3d-9015-8191268d3c42\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -3373,7 +2956,10 @@
"chunked"
],
"x-ms-request-id": [
- "6b7fb6a0-2d7c-4987-9a4f-c4d537fc2b2e"
+ "4d3df323-877b-471a-a2f2-6540b24c7233"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3385,38 +2971,37 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:16:58 GMT"
+ "Fri, 26 Feb 2016 02:22:03 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/874b05b3-deec-4af0-9d94-eaf7f54f01c8?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvODc0YjA1YjMtZGVlYy00YWYwLTlkOTQtZWFmN2Y1NGYwMWM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/Jobs/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvYmMxOTA5ZmQtMWE0Mi00ZGY5LWJjNjMtNmY4ZmY3Y2FmY2MxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"jobId\": \"bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\tUSE onesdk4850;\\r\\n\\tDROP CREDENTIAL onesdk1533;\"\r\n }\r\n}",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Content-Length": [
+ "270"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "x-ms-client-request-id": [
+ "812eaac2-1ae4-45ca-b3c8-98bed814ed6e"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"874b05b3-deec-4af0-9d94-eaf7f54f01c8\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:38 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:54 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:55 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:6895a250-3fab-4788-885e-fb0aea85ac6b\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:55 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:bl__4523021_151211000651910\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"bl__4523021_151211000651910\",\r\n \"rootProcessNodeId\": \"6895a250-3fab-4788-885e-fb0aea85ac6b\",\r\n \"script\": \"USE adladb012974;\\nCREATE CREDENTIAL adlacred012412 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"adlasecret019923\\\";\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/algebra.xml\",\r\n \"yarnApplicationId\": 9,\r\n \"yarnApplicationTimeStamp\": 1449871738039,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:16.2033543\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.7500081\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:00\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3431,7 +3016,7 @@
"chunked"
],
"x-ms-request-id": [
- "48a07281-fef1-4cbb-ba77-c8ef75702d28"
+ "39786981-b693-443e-ad29-77781ee8c985"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3443,38 +3028,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:17:04 GMT"
+ "Fri, 26 Feb 2016 02:22:04 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/874b05b3-deec-4af0-9d94-eaf7f54f01c8?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvODc0YjA1YjMtZGVlYy00YWYwLTlkOTQtZWFmN2Y1NGYwMWM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/Jobs/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvYmMxOTA5ZmQtMWE0Mi00ZGY5LWJjNjMtNmY4ZmY3Y2FmY2MxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "8b7ee23c-c1d8-4438-9ac5-c3d5d667e640"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"874b05b3-deec-4af0-9d94-eaf7f54f01c8\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:38 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:54 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:55 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:6895a250-3fab-4788-885e-fb0aea85ac6b\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:55 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:bl__4523021_151211000651910\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"bl__4523021_151211000651910\",\r\n \"rootProcessNodeId\": \"6895a250-3fab-4788-885e-fb0aea85ac6b\",\r\n \"script\": \"USE adladb012974;\\nCREATE CREDENTIAL adlacred012412 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"adlasecret019923\\\";\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/algebra.xml\",\r\n \"yarnApplicationId\": 9,\r\n \"yarnApplicationTimeStamp\": 1449871738039,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:16.2033543\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.7500081\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:05 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tDROP CREDENTIAL onesdk1533;\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:00.1120467\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3489,7 +3067,7 @@
"chunked"
],
"x-ms-request-id": [
- "c217b34f-a24f-47ad-ba8a-a1906f958117"
+ "c12f153f-85e7-40ac-af1c-aca4924e59fc"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3501,38 +3079,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:17:10 GMT"
+ "Fri, 26 Feb 2016 02:22:04 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/874b05b3-deec-4af0-9d94-eaf7f54f01c8?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvODc0YjA1YjMtZGVlYy00YWYwLTlkOTQtZWFmN2Y1NGYwMWM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/Jobs/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvYmMxOTA5ZmQtMWE0Mi00ZGY5LWJjNjMtNmY4ZmY3Y2FmY2MxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "292da532-3421-40de-8e8f-b004d1556c2c"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"874b05b3-deec-4af0-9d94-eaf7f54f01c8\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:38 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:54 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:55 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:6895a250-3fab-4788-885e-fb0aea85ac6b\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:55 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:bl__4523021_151211000651910\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"bl__4523021_151211000651910\",\r\n \"rootProcessNodeId\": \"6895a250-3fab-4788-885e-fb0aea85ac6b\",\r\n \"script\": \"USE adladb012974;\\nCREATE CREDENTIAL adlacred012412 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"adlasecret019923\\\";\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/algebra.xml\",\r\n \"yarnApplicationId\": 9,\r\n \"yarnApplicationTimeStamp\": 1449871738039,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:16.2033543\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.7500081\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:05 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tDROP CREDENTIAL onesdk1533;\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:05.3621348\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3547,7 +3118,7 @@
"chunked"
],
"x-ms-request-id": [
- "e6dfd63d-7bfa-49c0-a4e7-5a8a75c67573"
+ "a87b69ec-dfdf-4215-9cc1-4f2a3649ac61"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3559,38 +3130,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:17:14 GMT"
+ "Fri, 26 Feb 2016 02:22:10 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/874b05b3-deec-4af0-9d94-eaf7f54f01c8?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvODc0YjA1YjMtZGVlYy00YWYwLTlkOTQtZWFmN2Y1NGYwMWM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/Jobs/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvYmMxOTA5ZmQtMWE0Mi00ZGY5LWJjNjMtNmY4ZmY3Y2FmY2MxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "d0bf2e36-eee8-4730-a34d-7bd25d3b4f5f"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"874b05b3-deec-4af0-9d94-eaf7f54f01c8\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"startTime\": \"Fri, 11 Dec 2015 22:17:14 GMT\",\r\n \"endTime\": \"Fri, 11 Dec 2015 22:17:17 GMT\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:38 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:54 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:55 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:6895a250-3fab-4788-885e-fb0aea85ac6b\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:16:55 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:bl__4523021_151211000651910\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:14 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:17 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"bl__4523021_151211000651910\",\r\n \"rootProcessNodeId\": \"6895a250-3fab-4788-885e-fb0aea85ac6b\",\r\n \"script\": \"USE adladb012974;\\nCREATE CREDENTIAL adlacred012412 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"adlasecret019923\\\";\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/16/874b05b3-deec-4af0-9d94-eaf7f54f01c8/algebra.xml\",\r\n \"yarnApplicationId\": 9,\r\n \"yarnApplicationTimeStamp\": 1449871738039,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:16.2033543\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.7500081\",\r\n \"totalRunningTime\": \"00:00:03.1250436\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:05 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tDROP CREDENTIAL onesdk1533;\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:10.5809755\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3605,7 +3169,7 @@
"chunked"
],
"x-ms-request-id": [
- "31d266b6-1b96-4120-97cb-1a4b17e09ab7"
+ "3b15d152-0e39-4d4d-99ce-ea90744c47ac"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3617,41 +3181,34 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:17:20 GMT"
+ "Fri, 26 Feb 2016 02:22:15 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/adladb012974/credentials?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvYWRsYWRiMDEyOTc0L2NyZWRlbnRpYWxzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/Jobs/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvYmMxOTA5ZmQtMWE0Mi00ZGY5LWJjNjMtNmY4ZmY3Y2FmY2MxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "9a105f50-3097-4968-96db-299beed8dc1f"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba1781.konaaccountdogfood.net/sqlip/$metadata#credentials\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba1781\",\r\n \"databaseName\": \"adladb012974\",\r\n \"credentialName\": \"adlacred012412\",\r\n \"userName\": \"scope@rkm4grspxa\",\r\n \"identity\": \"adlasecret019923\",\r\n \"version\": \"854b4c09-d70e-433f-b14f-25c95e18c4dd\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:05 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:20 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:20 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4a08c337-fd30-4993-acfc-ac3fa958f3c4\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:20 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"4a08c337-fd30-4993-acfc-ac3fa958f3c4\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tDROP CREDENTIAL onesdk1533;\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/algebra.xml\",\r\n \"yarnApplicationId\": 2474,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:15.4846386\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0312519\",\r\n \"totalRunningTime\": \"00: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"
@@ -3663,10 +3220,7 @@
"chunked"
],
"x-ms-request-id": [
- "418cd9fa-ffa0-4cdc-b09d-fa74269d223c"
- ],
- "OData-Version": [
- "4.0"
+ "c7207af6-2488-47a4-a676-2fd7b639c710"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3678,41 +3232,34 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:17:20 GMT"
+ "Fri, 26 Feb 2016 02:22:21 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/adladb012974/credentials/adlacred012412?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvYWRsYWRiMDEyOTc0L2NyZWRlbnRpYWxzL2FkbGFjcmVkMDEyNDEyP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/Jobs/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvYmMxOTA5ZmQtMWE0Mi00ZGY5LWJjNjMtNmY4ZmY3Y2FmY2MxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "cbf24ab6-43d4-4b1e-9a18-1ecdf53fb84b"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba1781.konaaccountdogfood.net/sqlip/$metadata#credentials/$entity\",\r\n \"computeAccountName\": \"testaba1781\",\r\n \"databaseName\": \"adladb012974\",\r\n \"credentialName\": \"adlacred012412\",\r\n \"userName\": \"scope@rkm4grspxa\",\r\n \"identity\": \"adlasecret019923\",\r\n \"version\": \"854b4c09-d70e-433f-b14f-25c95e18c4dd\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:05 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:20 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:20 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4a08c337-fd30-4993-acfc-ac3fa958f3c4\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:20 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"4a08c337-fd30-4993-acfc-ac3fa958f3c4\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tDROP CREDENTIAL onesdk1533;\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/algebra.xml\",\r\n \"yarnApplicationId\": 2474,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:15.4846386\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0312519\",\r\n \"totalRunningTime\": \"00: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"
@@ -3724,10 +3271,7 @@
"chunked"
],
"x-ms-request-id": [
- "1d6a6a65-022b-48c7-a658-fcc194ecfc7a"
- ],
- "OData-Version": [
- "4.0"
+ "4d355a53-4bd8-44ea-a9fd-e969c1fc9a8f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3739,44 +3283,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:17:20 GMT"
+ "Fri, 26 Feb 2016 02:22:25 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/13cac5c7-16a1-465c-b663-53e4c258fd43?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvMTNjYWM1YzctMTZhMS00NjVjLWI2NjMtNTNlNGMyNThmZDQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"jobId\": \"13cac5c7-16a1-465c-b663-53e4c258fd43\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"USE adladb012974;\\r\\nDROP CREDENTIAL adlacred012412;\"\r\n }\r\n}",
+ "RequestUri": "/Jobs/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvYmMxOTA5ZmQtMWE0Mi00ZGY5LWJjNjMtNmY4ZmY3Y2FmY2MxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-client-request-id": [
+ "3554f9d2-04c9-4204-a412-f7df376813be"
],
- "Content-Length": [
- "272"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-resource-group-name": [
- "abarg17624"
- ],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"13cac5c7-16a1-465c-b663-53e4c258fd43\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:00\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:05 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:20 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:20 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4a08c337-fd30-4993-acfc-ac3fa958f3c4\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:20 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"4a08c337-fd30-4993-acfc-ac3fa958f3c4\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tDROP CREDENTIAL onesdk1533;\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/algebra.xml\",\r\n \"yarnApplicationId\": 2474,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:15.4846386\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0312519\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3791,7 +3322,7 @@
"chunked"
],
"x-ms-request-id": [
- "fd84a032-390f-4881-817d-c5f57eb2645d"
+ "0a56292f-e0e2-481e-a437-514a1dbdd644"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3803,38 +3334,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:17:22 GMT"
+ "Fri, 26 Feb 2016 02:22:31 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/13cac5c7-16a1-465c-b663-53e4c258fd43?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvMTNjYWM1YzctMTZhMS00NjVjLWI2NjMtNTNlNGMyNThmZDQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/Jobs/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvYmMxOTA5ZmQtMWE0Mi00ZGY5LWJjNjMtNmY4ZmY3Y2FmY2MxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "b05eb1a6-2302-4650-8f52-5fdcbac0e8d1"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"13cac5c7-16a1-465c-b663-53e4c258fd43\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE adladb012974;\\nDROP CREDENTIAL adlacred012412;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:00\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:05 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:20 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:20 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4a08c337-fd30-4993-acfc-ac3fa958f3c4\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:20 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"4a08c337-fd30-4993-acfc-ac3fa958f3c4\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tDROP CREDENTIAL onesdk1533;\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/algebra.xml\",\r\n \"yarnApplicationId\": 2474,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:15.4846386\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0312519\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3849,7 +3373,7 @@
"chunked"
],
"x-ms-request-id": [
- "867b230a-d774-4fdf-9c09-0e2c20841d86"
+ "bd608b22-9e74-4a76-8f42-4ee2b7ae5c74"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3861,38 +3385,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:17:22 GMT"
+ "Fri, 26 Feb 2016 02:22:36 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/13cac5c7-16a1-465c-b663-53e4c258fd43?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvMTNjYWM1YzctMTZhMS00NjVjLWI2NjMtNTNlNGMyNThmZDQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/Jobs/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvYmMxOTA5ZmQtMWE0Mi00ZGY5LWJjNjMtNmY4ZmY3Y2FmY2MxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "2339d048-b2ed-4da7-ac49-851af59d4d60"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"13cac5c7-16a1-465c-b663-53e4c258fd43\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:22 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE adladb012974;\\nDROP CREDENTIAL adlacred012412;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:05.3145214\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"startTime\": \"Fri, 26 Feb 2016 02:22:37 GMT\",\r\n \"endTime\": \"Fri, 26 Feb 2016 02:22:40 GMT\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:05 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:20 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:20 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:4a08c337-fd30-4993-acfc-ac3fa958f3c4\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:20 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:kobo_live_4661900_f426ef\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:37 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:22:40 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_4661900_f426ef\",\r\n \"rootProcessNodeId\": \"4a08c337-fd30-4993-acfc-ac3fa958f3c4\",\r\n \"script\": \"\\tUSE onesdk4850;\\n\\tDROP CREDENTIAL onesdk1533;\",\r\n \"algebraFilePath\": \"adl://onesdk2536.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/22/bc1909fd-1a42-4df9-bc63-6f8ff7cafcc1/algebra.xml\",\r\n \"yarnApplicationId\": 2474,\r\n \"yarnApplicationTimeStamp\": 1456391620230,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:15.4846386\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00.0312519\",\r\n \"totalRunningTime\": \"00:00:03.4844346\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3907,7 +3424,7 @@
"chunked"
],
"x-ms-request-id": [
- "a28a0d44-a035-4f03-b62e-eccd08ea809e"
+ "58f01e44-ea5a-47d6-912b-ff60e878e8be"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3919,42 +3436,32 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:17:27 GMT"
+ "Fri, 26 Feb 2016 02:22:42 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/13cac5c7-16a1-465c-b663-53e4c258fd43?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvMTNjYWM1YzctMTZhMS00NjVjLWI2NjMtNTNlNGMyNThmZDQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
+ "RequestUri": "/catalog/usql/databases/onesdk4850/secrets/onesdk9052?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvb25lc2RrNDg1MC9zZWNyZXRzL29uZXNkazkwNTI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "5cbc10bd-9bf0-43d6-acfa-e273016ae74d"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"13cac5c7-16a1-465c-b663-53e4c258fd43\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:22 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE adladb012974;\\nDROP CREDENTIAL adlacred012412;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:10.5333438\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
"Expires": [
"-1"
],
@@ -3965,7 +3472,7 @@
"chunked"
],
"x-ms-request-id": [
- "dd9c26cd-b392-4404-8643-32db1217092e"
+ "738ba2f4-42b0-4a55-8fe0-074060052cf5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3977,41 +3484,31 @@
"private"
],
"Date": [
- "Fri, 11 Dec 2015 22:17:33 GMT"
+ "Fri, 26 Feb 2016 02:22:43 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/13cac5c7-16a1-465c-b663-53e4c258fd43?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvMTNjYWM1YzctMTZhMS00NjVjLWI2NjMtNTNlNGMyNThmZDQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeAnalytics/accounts/onesdk3068?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGszMDY4P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
- ],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "x-ms-client-request-id": [
+ "13810c1e-8103-4183-929f-4f65c6c2aa85"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"13cac5c7-16a1-465c-b663-53e4c258fd43\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:22 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE adladb012974;\\nDROP CREDENTIAL adlacred012412;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:15.9084274\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
@@ -4019,57 +3516,59 @@
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"x-ms-request-id": [
- "bbd27aef-948a-48af-a1fb-2b80848eca6b"
+ "1d810083-8c55-4beb-af2c-ef6979042e67"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9ba70e3-8c9d-436c-8cef-74ef8056361a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T022247Z:b9ba70e3-8c9d-436c-8cef-74ef8056361a"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
- "private"
+ "no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:17:38 GMT"
+ "Fri, 26 Feb 2016 02:22:46 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/13cac5c7-16a1-465c-b663-53e4c258fd43?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvMTNjYWM1YzctMTZhMS00NjVjLWI2NjMtNTNlNGMyNThmZDQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk9419/providers/Microsoft.DataLakeStore/accounts/onesdk2536?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazk0MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazI1MzY/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
- ],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "x-ms-client-request-id": [
+ "16ee53bc-1294-4ef0-a9f2-91decf7ddc50"
],
- "x-ms-client-resource-group-name": [
- "abarg17624"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"13cac5c7-16a1-465c-b663-53e4c258fd43\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:22 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:38 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:40 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:ec05636c-7cd7-4f84-a1ca-7860abc7a882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:41 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:bl__4523021_151211000651910\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"bl__4523021_151211000651910\",\r\n \"rootProcessNodeId\": \"ec05636c-7cd7-4f84-a1ca-7860abc7a882\",\r\n \"script\": \"USE adladb012974;\\nDROP CREDENTIAL adlacred012412;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/algebra.xml\",\r\n \"yarnApplicationId\": 10,\r\n \"yarnApplicationTimeStamp\": 1449871738039,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:16.0002275\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:01.3593902\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
@@ -4077,57 +3576,53 @@
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"x-ms-request-id": [
- "f1050c59-9aee-4be8-bac2-787a0347e9a4"
+ "6f4b5352-2f54-4eea-a17e-83de49d34b5b"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "b25dd0ff-1d73-4470-a55e-c2e6d9da5d16"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T022250Z:b25dd0ff-1d73-4470-a55e-c2e6d9da5d16"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
- "private"
+ "no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:17:43 GMT"
+ "Fri, 26 Feb 2016 02:22:50 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/13cac5c7-16a1-465c-b663-53e4c258fd43?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvMTNjYWM1YzctMTZhMS00NjVjLWI2NjMtNTNlNGMyNThmZDQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk9419?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazk0MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-resource-group-name": [
- "abarg17624"
- ],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"13cac5c7-16a1-465c-b663-53e4c258fd43\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:22 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:38 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:40 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:ec05636c-7cd7-4f84-a1ca-7860abc7a882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:41 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:bl__4523021_151211000651910\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"bl__4523021_151211000651910\",\r\n \"rootProcessNodeId\": \"ec05636c-7cd7-4f84-a1ca-7860abc7a882\",\r\n \"script\": \"USE adladb012974;\\nDROP CREDENTIAL adlacred012412;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/algebra.xml\",\r\n \"yarnApplicationId\": 10,\r\n \"yarnApplicationTimeStamp\": 1449871738039,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:16.0002275\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:01.3593902\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
@@ -4135,57 +3630,53 @@
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-request-id": [
- "071c5898-915a-4a6f-97a9-c13722910ab8"
+ "d0864939-bd36-45ec-80b5-2bffb81bb01a"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "d0864939-bd36-45ec-80b5-2bffb81bb01a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T022252Z:d0864939-bd36-45ec-80b5-2bffb81bb01a"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
- "private"
+ "no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:17:48 GMT"
+ "Fri, 26 Feb 2016 02:22:52 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDE5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/Jobs/13cac5c7-16a1-465c-b663-53e4c258fd43?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvMTNjYWM1YzctMTZhMS00NjVjLWI2NjMtNTNlNGMyNThmZDQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDE5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVOREU1TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-resource-group-name": [
- "abarg17624"
- ],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"13cac5c7-16a1-465c-b663-53e4c258fd43\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"startTime\": \"Fri, 11 Dec 2015 22:17:51 GMT\",\r\n \"endTime\": null,\r\n \"state\": \"Running\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:22 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:38 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:40 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:ec05636c-7cd7-4f84-a1ca-7860abc7a882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:41 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:bl__4523021_151211000651910\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:51 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"bl__4523021_151211000651910\",\r\n \"rootProcessNodeId\": \"ec05636c-7cd7-4f84-a1ca-7860abc7a882\",\r\n \"script\": \"USE adladb012974;\\nDROP CREDENTIAL adlacred012412;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/algebra.xml\",\r\n \"yarnApplicationId\": 10,\r\n \"yarnApplicationTimeStamp\": 1449871738039,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:16.0002275\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:01.3593902\",\r\n \"totalRunningTime\": \"00:00:02.8144958\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
@@ -4193,57 +3684,53 @@
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
],
"x-ms-request-id": [
- "f00f5992-51d3-4398-8eab-cfefbd4da2de"
+ "c9cde6ff-ef17-4f51-9001-df83210ba500"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "c9cde6ff-ef17-4f51-9001-df83210ba500"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T022252Z:c9cde6ff-ef17-4f51-9001-df83210ba500"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
- "private"
+ "no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:17:54 GMT"
+ "Fri, 26 Feb 2016 02:22:52 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDE5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/Jobs/13cac5c7-16a1-465c-b663-53e4c258fd43?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvMTNjYWM1YzctMTZhMS00NjVjLWI2NjMtNTNlNGMyNThmZDQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDE5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVOREU1TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-resource-group-name": [
- "abarg17624"
- ],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"13cac5c7-16a1-465c-b663-53e4c258fd43\",\r\n \"name\": \"TestJobCredential\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"startTime\": \"Fri, 11 Dec 2015 22:17:51 GMT\",\r\n \"endTime\": \"Fri, 11 Dec 2015 22:17:54 GMT\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:21 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:22 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:38 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": null\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:40 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:ec05636c-7cd7-4f84-a1ca-7860abc7a882\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:41 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runtimeVersion:bl__4523021_151211000651910\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:51 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:17:54 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"bl__4523021_151211000651910\",\r\n \"rootProcessNodeId\": \"ec05636c-7cd7-4f84-a1ca-7860abc7a882\",\r\n \"script\": \"USE adladb012974;\\nDROP CREDENTIAL adlacred012412;\",\r\n \"algebraFilePath\": \"adl://datalake01645.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/17/13cac5c7-16a1-465c-b663-53e4c258fd43/algebra.xml\",\r\n \"yarnApplicationId\": 10,\r\n \"yarnApplicationTimeStamp\": 1449871738039,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:16.0002275\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:01.3593902\",\r\n \"totalRunningTime\": \"00:00:03.1250444\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
@@ -4251,100 +3738,101 @@
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
],
"x-ms-request-id": [
- "ecbd42a7-f6f3-49e8-95da-077033fda363"
+ "d0eca6ce-5600-4c45-8f25-7c674e728c79"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "d0eca6ce-5600-4c45-8f25-7c674e728c79"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T022307Z:d0eca6ce-5600-4c45-8f25-7c674e728c79"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
- "private"
+ "no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:17:59 GMT"
+ "Fri, 26 Feb 2016 02:23:07 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDE5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/catalog/usql/databases/adladb012974/secrets/adlasecret019923?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvYWRsYWRiMDEyOTc0L3NlY3JldHMvYWRsYXNlY3JldDAxOTkyMz9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDE5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVOREU1TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsCatalog 0.9.3-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsCatalog",
- "0.9.3-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-resource-group-name": [
- "abarg17624"
- ],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
"ResponseBody": "",
"ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
"Expires": [
"-1"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
],
"x-ms-request-id": [
- "ec6eadc7-03d6-4a2a-8d4c-3e40a23e33bc"
+ "9916e968-ebe2-4fc5-8eff-95fb673422c8"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "9916e968-ebe2-4fc5-8eff-95fb673422c8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T022323Z:9916e968-ebe2-4fc5-8eff-95fb673422c8"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
- "private"
+ "no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:18:01 GMT"
+ "Fri, 26 Feb 2016 02:23:22 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDE5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17624/providers/Microsoft.DataLakeAnalytics/accounts/testaba1781?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTc4MT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDE5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVOREU1TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
"ResponseBody": "",
@@ -4358,17 +3846,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "654b7f3f-2b52-41c9-b0b2-196842e454d1"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1137"
+ "x-ms-request-id": [
+ "7024ce81-0698-46ab-90ea-3e366c749b28"
],
"x-ms-correlation-request-id": [
- "a7aaad9b-a9dc-42b7-8891-1e8334c48d75"
+ "7024ce81-0698-46ab-90ea-3e366c749b28"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221804Z:a7aaad9b-a9dc-42b7-8891-1e8334c48d75"
+ "WESTUS:20160226T022338Z:7024ce81-0698-46ab-90ea-3e366c749b28"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4377,23 +3865,28 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:18:03 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:23:37 GMT"
]
},
"StatusCode": 200
}
],
- "Names": {},
+ "Names": {
+ "": [
+ "onesdk9419",
+ "onesdk3068",
+ "onesdk2536",
+ "onesdk4850",
+ "onesdk7856",
+ "onesdk5076",
+ "onesdk5667",
+ "onesdk8226",
+ "onesdk1533",
+ "onesdk9052",
+ "onesdk6290"
+ ]
+ },
"Variables": {
- "SubscriptionId": "0353d26d-e338-469a-a87a-bd3507471155"
+ "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f"
}
}
\ No newline at end of file
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 ec6e718935c4..f88cbc182237 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/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/register?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/register?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1573"
+ "1013"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,16 +25,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1149"
+ "1196"
],
"x-ms-request-id": [
- "4981e003-7db7-48d4-ab6e-5bab0f62cb76"
+ "76a6db02-1c2c-4e66-84ab-47848a0ed684"
],
"x-ms-correlation-request-id": [
- "4981e003-7db7-48d4-ab6e-5bab0f62cb76"
+ "76a6db02-1c2c-4e66-84ab-47848a0ed684"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220345Z:4981e003-7db7-48d4-ab6e-5bab0f62cb76"
+ "CENTRALUS:20160226T020657Z:76a6db02-1c2c-4e66-84ab-47848a0ed684"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,14 +43,14 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:03:44 GMT"
+ "Fri, 26 Feb 2016 02:06:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -58,10 +58,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1573"
+ "1013"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14814"
+ "14987"
],
"x-ms-request-id": [
- "622a8582-96e8-497e-b303-213a1b427285"
+ "39f47403-982a-4806-809d-47f6fc9a4af6"
],
"x-ms-correlation-request-id": [
- "622a8582-96e8-497e-b303-213a1b427285"
+ "39f47403-982a-4806-809d-47f6fc9a4af6"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220345Z:622a8582-96e8-497e-b303-213a1b427285"
+ "CENTRALUS:20160226T020657Z:39f47403-982a-4806-809d-47f6fc9a4af6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,31 +91,25 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:03:44 GMT"
+ "Fri, 26 Feb 2016 02:06:57 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourcegroups/abarg17022?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlZ3JvdXBzL2FiYXJnMTcwMjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk3883?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022\",\r\n \"name\": \"abarg17022\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "174"
+ "102"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,17 +120,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1148"
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14986"
],
"x-ms-request-id": [
- "0d7fc400-27e9-440e-9197-a4cc22c6b12e"
+ "5c6c3382-74ae-4aaa-a2b7-22407ec6fce3"
],
"x-ms-correlation-request-id": [
- "0d7fc400-27e9-440e-9197-a4cc22c6b12e"
+ "5c6c3382-74ae-4aaa-a2b7-22407ec6fce3"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220345Z:0d7fc400-27e9-440e-9197-a4cc22c6b12e"
+ "CENTRALUS:20160226T020706Z:5c6c3382-74ae-4aaa-a2b7-22407ec6fce3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,28 +142,25 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:03:45 GMT"
+ "Fri, 26 Feb 2016 02:07:06 GMT"
]
},
- "StatusCode": 201
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourcegroups/abarg17022?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlZ3JvdXBzL2FiYXJnMTcwMjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk3883?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022\",\r\n \"name\": \"abarg17022\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "174"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "0"
],
"Expires": [
"-1"
@@ -175,16 +169,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14813"
+ "14984"
],
"x-ms-request-id": [
- "0cc761e2-9cf2-4ec4-9bf1-40e1e9767894"
+ "553f8120-1193-45bb-9cdc-58ff5b0c3668"
],
"x-ms-correlation-request-id": [
- "0cc761e2-9cf2-4ec4-9bf1-40e1e9767894"
+ "553f8120-1193-45bb-9cdc-58ff5b0c3668"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220346Z:0cc761e2-9cf2-4ec4-9bf1-40e1e9767894"
+ "WESTUS:20160226T021057Z:553f8120-1193-45bb-9cdc-58ff5b0c3668"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,44 +187,34 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:03:45 GMT"
+ "Fri, 26 Feb 2016 02:10:57 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 204
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeStore/accounts/datalake01989?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTcwMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDE5ODk/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk3883?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"datalake01989\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "59"
- ],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "31"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
- ],
- "x-ms-client-request-id": [
- "d1dd1b40-b69b-4e2d-93e3-10e010b38179"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeStore/accounts/datalake01989\",\r\n \"name\": \"datalake01989\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883\",\r\n \"name\": \"onesdk3883\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "362"
+ "174"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -238,23 +222,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/d09e2fbc-5d3d-4c9c-b017-e915e3c243340?api-version=2015-10-01-preview&expanded=true"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
],
"x-ms-request-id": [
- "cce21cc9-755e-418d-96f0-2d1f7b8640b0"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1151"
+ "9fdf7463-a61a-4824-a260-c89eb1bf3315"
],
"x-ms-correlation-request-id": [
- "f4ad10c4-421e-4e20-8bc7-1720cfb98b2b"
+ "9fdf7463-a61a-4824-a260-c89eb1bf3315"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220346Z:f4ad10c4-421e-4e20-8bc7-1720cfb98b2b"
+ "CENTRALUS:20160226T020708Z:9fdf7463-a61a-4824-a260-c89eb1bf3315"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -263,43 +241,28 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:03:46 GMT"
- ],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourcegroups/abarg17022/providers/Microsoft.DataLakeStore/accounts/datalake01989/operationresults/0?api-version=2015-10-01-preview"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:07:08 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/d09e2fbc-5d3d-4c9c-b017-e915e3c243340?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2QwOWUyZmJjLTVkM2QtNGM5Yy1iMDE3LWU5MTVlM2MyNDMzNDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "12"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -307,17 +270,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "880130fe-7bd5-4bd5-b567-b69d59af3241"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14497"
+ "14985"
+ ],
+ "x-ms-request-id": [
+ "60bf233e-6f70-421a-914d-30fa69fccb31"
],
"x-ms-correlation-request-id": [
- "8c6d5957-a71e-429f-94cc-56d6a571a1db"
+ "60bf233e-6f70-421a-914d-30fa69fccb31"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220347Z:8c6d5957-a71e-429f-94cc-56d6a571a1db"
+ "CENTRALUS:20160226T020708Z:60bf233e-6f70-421a-914d-30fa69fccb31"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -326,40 +289,34 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:03:46 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:07:08 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/d09e2fbc-5d3d-4c9c-b017-e915e3c243340?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2QwOWUyZmJjLTVkM2QtNGM5Yy1iMDE3LWU5MTVlM2MyNDMzNDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeStore/accounts/onesdk4880?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazQ4ODA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "b184bc2c-4e77-4cd7-8c98-bf7455c8876f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk4880' under resource group 'onesdk3883' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "157"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -367,17 +324,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "72c871ca-194b-41e1-920a-cbf31dfbc948"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14496"
+ "x-ms-request-id": [
+ "2bf875c2-182b-4ffa-83e9-bdbcbb60f5b7"
],
"x-ms-correlation-request-id": [
- "82103c60-854f-4b52-a678-7da6d1447630"
+ "2bf875c2-182b-4ffa-83e9-bdbcbb60f5b7"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220357Z:82103c60-854f-4b52-a678-7da6d1447630"
+ "CENTRALUS:20160226T020708Z:2bf875c2-182b-4ffa-83e9-bdbcbb60f5b7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -386,40 +343,34 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:03:57 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:07:08 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/d09e2fbc-5d3d-4c9c-b017-e915e3c243340?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2QwOWUyZmJjLTVkM2QtNGM5Yy1iMDE3LWU5MTVlM2MyNDMzNDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeStore/accounts/onesdk4880?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazQ4ODA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "213c306e-bc5d-4fff-a376-a23d1be7d4f5"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk4880' under resource group 'onesdk3883' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "157"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -427,17 +378,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "dea24631-e5b4-4e45-9dd1-b8a8a573a985"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14493"
+ "x-ms-request-id": [
+ "eb26c987-e9cd-4258-a29f-bd5a0db5e1d1"
],
"x-ms-correlation-request-id": [
- "7006f950-6054-4700-8148-090e465da97a"
+ "eb26c987-e9cd-4258-a29f-bd5a0db5e1d1"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220412Z:7006f950-6054-4700-8148-090e465da97a"
+ "CENTRALUS:20160226T020709Z:eb26c987-e9cd-4258-a29f-bd5a0db5e1d1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -446,37 +397,25 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:04:12 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:07:09 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/d09e2fbc-5d3d-4c9c-b017-e915e3c243340?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2QwOWUyZmJjLTVkM2QtNGM5Yy1iMDE3LWU5MTVlM2MyNDMzNDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeStore/accounts/onesdk4880?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazQ4ODA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk4880.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:07:13.6686522Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:07:13.6686522Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeStore/accounts/onesdk4880\",\r\n \"name\": \"onesdk4880\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "22"
+ "488"
],
"Content-Type": [
"application/json"
@@ -488,16 +427,16 @@
"no-cache"
],
"x-ms-request-id": [
- "d5d3a57a-a525-4d40-9e53-a2c3b52c531a"
+ "6938c099-73a3-4dfa-aea1-3d6ae5bc07c1"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14488"
+ "14988"
],
"x-ms-correlation-request-id": [
- "0e2d6681-b8b1-4075-a9be-c52d8069a3b3"
+ "4c08923d-fa9f-4858-8c5a-68dc977d2c9d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220427Z:0e2d6681-b8b1-4075-a9be-c52d8069a3b3"
+ "CENTRALUS:20160226T020742Z:4c08923d-fa9f-4858-8c5a-68dc977d2c9d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -506,7 +445,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:04:27 GMT"
+ "Fri, 26 Feb 2016 02:07:41 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -521,26 +460,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeStore/accounts/datalake01989?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTcwMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDE5ODk/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeStore/accounts/onesdk4880?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazQ4ODA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "x-ms-client-request-id": [
+ "c1ab4322-bc15-4923-85a4-e901f50e3afa"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"datalake01989.caboaccountdogfood.net\",\r\n \"creationTime\": \"2015-12-11T22:03:51.0858586Z\",\r\n \"lastModifiedTime\": \"2015-12-11T22:03:51.0858586Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeStore/accounts/datalake01989\",\r\n \"name\": \"datalake01989\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk4880.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:07:13.6686522Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:07:13.6686522Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeStore/accounts/onesdk4880\",\r\n \"name\": \"onesdk4880\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "499"
+ "488"
],
"Content-Type": [
"application/json"
@@ -552,16 +490,16 @@
"no-cache"
],
"x-ms-request-id": [
- "6351eacd-fbad-4e03-a70c-0102409a4338"
+ "9fd03d0f-e2c3-4d15-bcad-394949dfd812"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14487"
+ "14991"
],
"x-ms-correlation-request-id": [
- "0d6ae1bf-53d8-4898-9892-6fabbfc3787e"
+ "170a5585-ff8d-44d5-b95f-4378c1945b11"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220428Z:0d6ae1bf-53d8-4898-9892-6fabbfc3787e"
+ "WESTUS:20160226T021056Z:170a5585-ff8d-44d5-b95f-4378c1945b11"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -570,7 +508,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:04:27 GMT"
+ "Fri, 26 Feb 2016 02:10:56 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -585,35 +523,31 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeStore/accounts/datalake027556?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTcwMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDI3NTU2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeStore/accounts/onesdk4880?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazQ4ODA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"datalake027556\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"onesdk4880\",\r\n \"tags\": {},\r\n \"properties\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "60"
+ "92"
+ ],
+ "x-ms-client-request-id": [
+ "dda930f2-53ae-492b-92d7-3e85e3fbb7d6"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
- ],
- "x-ms-client-request-id": [
- "713f8532-04d6-425c-a5d0-16daa844b5b6"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeStore/accounts/datalake027556\",\r\n \"name\": \"datalake027556\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeStore/accounts/onesdk4880\",\r\n \"name\": \"onesdk4880\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "364"
+ "354"
],
"Content-Type": [
"application/json"
@@ -628,19 +562,19 @@
"10"
],
"Azure-AsyncOperation": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/82c0c16c-7cd4-4317-922b-eafe7c49e5bd0?api-version=2015-10-01-preview&expanded=true"
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e7e27548-befc-4a49-8829-419e06188f3f0?api-version=2015-10-01-preview&expanded=true"
],
"x-ms-request-id": [
- "c0b9f00d-fc2d-4126-8b38-74ab959caea4"
+ "dc5fa6e8-2505-4bdf-83fd-b98db5c7ae0e"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1150"
+ "1196"
],
"x-ms-correlation-request-id": [
- "6b6e81eb-1330-4257-aa39-bac2aab46c67"
+ "1af44b63-011b-4892-bebf-36e53254efba"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220428Z:6b6e81eb-1330-4257-aa39-bac2aab46c67"
+ "CENTRALUS:20160226T020712Z:1af44b63-011b-4892-bebf-36e53254efba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -649,10 +583,10 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:04:28 GMT"
+ "Fri, 26 Feb 2016 02:07:11 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourcegroups/abarg17022/providers/Microsoft.DataLakeStore/accounts/datalake027556/operationresults/0?api-version=2015-10-01-preview"
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk3883/providers/Microsoft.DataLakeStore/accounts/onesdk4880/operationresults/0?api-version=2015-10-01-preview"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -667,22 +601,19 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/82c0c16c-7cd4-4317-922b-eafe7c49e5bd0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzgyYzBjMTZjLTdjZDQtNDMxNy05MjJiLWVhZmU3YzQ5ZTViZDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e7e27548-befc-4a49-8829-419e06188f3f0?api-version=2015-10-01-preview&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2U3ZTI3NTQ4LWJlZmMtNGE0OS04ODI5LTQxOWUwNjE4OGYzZjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.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"
@@ -694,16 +625,16 @@
"no-cache"
],
"x-ms-request-id": [
- "12f5b30b-eeb0-431c-99e9-891a6a727c13"
+ "d4f0e5cb-d758-44a7-9274-3c444bb357e9"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14486"
+ "14989"
],
"x-ms-correlation-request-id": [
- "640000d2-1791-489b-954e-4513361899ed"
+ "6821b1d5-2a0f-4497-b2c7-4178225d3d56"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220429Z:640000d2-1791-489b-954e-4513361899ed"
+ "CENTRALUS:20160226T020742Z:6821b1d5-2a0f-4497-b2c7-4178225d3d56"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -712,7 +643,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:04:29 GMT"
+ "Fri, 26 Feb 2016 02:07:41 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -727,25 +658,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/82c0c16c-7cd4-4317-922b-eafe7c49e5bd0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzgyYzBjMTZjLTdjZDQtNDMxNy05MjJiLWVhZmU3YzQ5ZTViZDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8755?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NzU1P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "8ad5c0d3-def9-4bd9-a66a-60c1cc4367ef"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.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/onesdk8755' under resource group 'onesdk3883' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "161"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -753,17 +687,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "449bec60-d625-401f-882e-efea238a0c1d"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14485"
+ "x-ms-request-id": [
+ "26672e4e-4f5c-4406-ba4e-46609f300790"
],
"x-ms-correlation-request-id": [
- "d8bcde49-854a-44ac-a1e5-ba1b08f76515"
+ "26672e4e-4f5c-4406-ba4e-46609f300790"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220439Z:d8bcde49-854a-44ac-a1e5-ba1b08f76515"
+ "CENTRALUS:20160226T020743Z:26672e4e-4f5c-4406-ba4e-46609f300790"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -772,40 +706,34 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:04:39 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:07:42 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/82c0c16c-7cd4-4317-922b-eafe7c49e5bd0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzgyYzBjMTZjLTdjZDQtNDMxNy05MjJiLWVhZmU3YzQ5ZTViZDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8755?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NzU1P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "fe5b856c-e58d-4820-8d89-96cce5a9385c"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.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/onesdk8755' under resource group 'onesdk3883' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "161"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -813,17 +741,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "a2e7f092-f60d-44c7-b8bb-921758dfcb08"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14484"
+ "x-ms-request-id": [
+ "b81af5b0-c7e5-4174-a2a0-dd0b6f468488"
],
"x-ms-correlation-request-id": [
- "9f17c2e3-77e4-4273-86f9-5c4836292078"
+ "b81af5b0-c7e5-4174-a2a0-dd0b6f468488"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220455Z:9f17c2e3-77e4-4273-86f9-5c4836292078"
+ "CENTRALUS:20160226T020743Z:b81af5b0-c7e5-4174-a2a0-dd0b6f468488"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -832,37 +760,25 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:04:54 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:07:42 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/82c0c16c-7cd4-4317-922b-eafe7c49e5bd0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzgyYzBjMTZjLTdjZDQtNDMxNy05MjJiLWVhZmU3YzQ5ZTViZDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8755?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NzU1P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4880\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk4880\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8755.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:07:45.7955942Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:07:45.7955942Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8755\",\r\n \"name\": \"onesdk8755\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "22"
+ "659"
],
"Content-Type": [
"application/json"
@@ -874,16 +790,16 @@
"no-cache"
],
"x-ms-request-id": [
- "a24784c6-a12c-46d8-85e8-fe68459e8d36"
+ "0bad3512-fa59-4c77-8da7-360517b0f75f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14510"
+ "14996"
],
"x-ms-correlation-request-id": [
- "9d581da0-2de5-4019-b58d-70d875fcedd5"
+ "7c66fbf4-849d-4030-af5a-4dbd47352a08"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220510Z:9d581da0-2de5-4019-b58d-70d875fcedd5"
+ "CENTRALUS:20160226T020815Z:7c66fbf4-849d-4030-af5a-4dbd47352a08"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -892,7 +808,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:05:10 GMT"
+ "Fri, 26 Feb 2016 02:08:15 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -907,26 +823,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeStore/accounts/datalake027556?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTcwMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDI3NTU2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8755?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NzU1P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "x-ms-client-request-id": [
+ "426f9bdf-c07b-4536-a818-c12aa5941da9"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"datalake027556.caboaccountdogfood.net\",\r\n \"creationTime\": \"2015-12-11T22:04:32.6619294Z\",\r\n \"lastModifiedTime\": \"2015-12-11T22:04:32.6619294Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeStore/accounts/datalake027556\",\r\n \"name\": \"datalake027556\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4880\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk4880\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8755.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:07:45.7955942Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:07:45.7955942Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8755\",\r\n \"name\": \"onesdk8755\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "502"
+ "659"
],
"Content-Type": [
"application/json"
@@ -938,16 +853,16 @@
"no-cache"
],
"x-ms-request-id": [
- "45184ce5-d3d1-4a95-bf21-bdd1996c4353"
+ "22f2fd2a-c00f-4c17-ab7a-4cc608dda379"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14509"
+ "14995"
],
"x-ms-correlation-request-id": [
- "78b5c770-582d-48a2-9394-f27ce2e2c0c7"
+ "251d1757-6bf9-45b9-b6fa-8c98acbf67fa"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220510Z:78b5c770-582d-48a2-9394-f27ce2e2c0c7"
+ "CENTRALUS:20160226T020816Z:251d1757-6bf9-45b9-b6fa-8c98acbf67fa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -956,7 +871,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:05:10 GMT"
+ "Fri, 26 Feb 2016 02:08:15 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -971,32 +886,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeAnalytics/accounts/testaba14192?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTcwMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxOTI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8755?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NzU1P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "4fddae06-35e8-438b-887b-edb9763fe633"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba14192' under resource group 'abarg17022' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4880\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk4880\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8755.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:07:45.7955942Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:07:45.7955942Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8755\",\r\n \"name\": \"onesdk8755\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "163"
+ "659"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -1004,17 +915,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
- ],
"x-ms-request-id": [
- "1b150d73-169f-4e1e-9fd2-013f0dc44e70"
+ "ae441e29-672f-4d43-8324-f1b75f3e309e"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
],
"x-ms-correlation-request-id": [
- "1b150d73-169f-4e1e-9fd2-013f0dc44e70"
+ "9bd1bb85-fe2a-47e4-a15d-cfbec20ca5de"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220518Z:1b150d73-169f-4e1e-9fd2-013f0dc44e70"
+ "WESTUS:20160226T021051Z:9bd1bb85-fe2a-47e4-a15d-cfbec20ca5de"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1023,35 +934,40 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:05:18 GMT"
+ "Fri, 26 Feb 2016 02:10:50 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeAnalytics/accounts/testaba14192?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTcwMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxOTI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8755?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NzU1P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "c3472fcf-7399-4cfa-a158-1a3b9cc6d288"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba14192' under resource group 'abarg17022' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/onesdk8755' under resource group 'onesdk3883' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "163"
+ "161"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1066,13 +982,13 @@
"gateway"
],
"x-ms-request-id": [
- "1e93b7b6-17b4-42fb-b475-fa09633ea4fe"
+ "ad481d87-9444-4c1c-8492-199666629db9"
],
"x-ms-correlation-request-id": [
- "1e93b7b6-17b4-42fb-b475-fa09633ea4fe"
+ "ad481d87-9444-4c1c-8492-199666629db9"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220519Z:1e93b7b6-17b4-42fb-b475-fa09633ea4fe"
+ "WESTUS:20160226T021055Z:ad481d87-9444-4c1c-8492-199666629db9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1081,38 +997,34 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:05:18 GMT"
+ "Fri, 26 Feb 2016 02:10:54 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeAnalytics/accounts/testaba14192?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTcwMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxOTI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8755?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NzU1P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "e32a4b2f-e38f-49a2-a85e-9b09ffcf3dca"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake01989\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"datalake01989\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba14192.konaaccountdogfood.net\",\r\n \"creationTime\": \"2015-12-11T22:05:19.1508905Z\",\r\n \"lastModifiedTime\": \"2015-12-11T22:05:19.1508905Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeAnalytics/accounts/testaba14192\",\r\n \"name\": \"testaba14192\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/onesdk8755' under resource group 'onesdk3883' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "667"
+ "161"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1120,17 +1032,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "b04272d8-9481-4061-8c3a-04d1c4d1af4a"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14764"
+ "x-ms-request-id": [
+ "f6ec1554-d8e0-4a6d-939a-4860186af797"
],
"x-ms-correlation-request-id": [
- "7e800948-01ab-4dd9-b927-7f114679511b"
+ "f6ec1554-d8e0-4a6d-939a-4860186af797"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220600Z:7e800948-01ab-4dd9-b927-7f114679511b"
+ "WESTUS:20160226T021055Z:f6ec1554-d8e0-4a6d-939a-4860186af797"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1139,44 +1051,37 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:06:00 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:10:54 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeAnalytics/accounts/testaba14192?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTcwMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxOTI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8755?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NzU1P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"onesdk8755\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4880\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"onesdk4880\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "233"
+ ],
+ "x-ms-client-request-id": [
+ "7c4372a0-e221-401e-966f-0e0d774cda12"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake01989\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"datalake01989\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba14192.konaaccountdogfood.net\",\r\n \"creationTime\": \"2015-12-11T22:05:19.1508905Z\",\r\n \"lastModifiedTime\": \"2015-12-11T22:05:19.1508905Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeAnalytics/accounts/testaba14192\",\r\n \"name\": \"testaba14192\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk4880\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"onesdk4880\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8755\",\r\n \"name\": \"onesdk8755\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "667"
+ "453"
],
"Content-Type": [
"application/json"
@@ -1187,17 +1092,23 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/d9471032-a616-4d1f-9043-66092e268f1f0?api-version=2015-10-01-preview&expanded=true"
+ ],
"x-ms-request-id": [
- "4acda3c0-15ff-4e1e-a9bf-bc6614c588ba"
+ "0bf140a1-5561-43b1-ab20-1cdff228011f"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14763"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "702d73cf-96ae-4814-9b7a-8bbc962fc1eb"
+ "730878b7-7232-4cb4-8ef8-87d07d76dea2"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220601Z:702d73cf-96ae-4814-9b7a-8bbc962fc1eb"
+ "CENTRALUS:20160226T020745Z:730878b7-7232-4cb4-8ef8-87d07d76dea2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1206,7 +1117,10 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:06:00 GMT"
+ "Fri, 26 Feb 2016 02:07:44 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk3883/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8755/operationresults/0?api-version=2015-10-01-preview"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1218,32 +1132,22 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeAnalytics/accounts/testaba14192?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTcwMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxOTI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/d9471032-a616-4d1f-9043-66092e268f1f0?api-version=2015-10-01-preview&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9kOTQ3MTAzMi1hNjE2LTRkMWYtOTA0My02NjA5MmUyNjhmMWYwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake01989\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"datalake01989\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba14192.konaaccountdogfood.net\",\r\n \"creationTime\": \"2015-12-11T22:05:19.1508905Z\",\r\n \"lastModifiedTime\": \"2015-12-11T22:05:19.1508905Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeAnalytics/accounts/testaba14192\",\r\n \"name\": \"testaba14192\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "667"
+ "22"
],
"Content-Type": [
"application/json"
@@ -1255,16 +1159,16 @@
"no-cache"
],
"x-ms-request-id": [
- "a5d4dd0f-5795-4554-a265-7ab866b05815"
+ "6631851e-fbcf-42de-a28d-a9b7f3d6282e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14490"
+ "14997"
],
"x-ms-correlation-request-id": [
- "dcc7456e-0a7d-4778-8e2d-f65a9b1326bb"
+ "db3249da-869d-48e5-ae0c-938c3624274c"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220807Z:dcc7456e-0a7d-4778-8e2d-f65a9b1326bb"
+ "CENTRALUS:20160226T020815Z:db3249da-869d-48e5-ae0c-938c3624274c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1273,7 +1177,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:08:07 GMT"
+ "Fri, 26 Feb 2016 02:08:15 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1288,30 +1192,32 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeAnalytics/accounts/testaba14192?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTcwMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxOTI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/Jobs/403e35af-1b5c-48ab-8a75-1ee88734ce20?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvNDAzZTM1YWYtMWI1Yy00OGFiLThhNzUtMWVlODg3MzRjZTIwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"jobId\": \"403e35af-1b5c-48ab-8a75-1ee88734ce20\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\"\r\n }\r\n}",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "259"
+ ],
+ "x-ms-client-request-id": [
+ "4181e05f-f563-4800-b4f0-0dc1fd52a8a4"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba14192' under resource group 'abarg17022' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"403e35af-1b5c-48ab-8a75-1ee88734ce20\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:10:47 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:10:47 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://onesdk4880.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/10/403e35af-1b5c-48ab-8a75-1ee88734ce20/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:00\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "163"
- ],
"Content-Type": [
"application/json; charset=utf-8"
],
@@ -1321,128 +1227,98 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "f4640b60-438c-41d7-8861-32c7d9339081"
+ "a5aa8f60-0e04-4c44-86c6-cb0980fa9ba2"
],
- "x-ms-correlation-request-id": [
- "f4640b60-438c-41d7-8861-32c7d9339081"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20151211T220808Z:f4640b60-438c-41d7-8861-32c7d9339081"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "private"
],
"Date": [
- "Fri, 11 Dec 2015 22:08:08 GMT"
+ "Fri, 26 Feb 2016 02:10:47 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeAnalytics/accounts/testaba14192?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTcwMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxOTI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"testaba14192\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake01989\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"datalake01989\"\r\n }\r\n ],\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n }\r\n}",
+ "RequestUri": "/Jobs/403e35af-1b5c-48ab-8a75-1ee88734ce20/CancelJob?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvNDAzZTM1YWYtMWI1Yy00OGFiLThhNzUtMWVlODg3MzRjZTIwL0NhbmNlbEpvYj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=",
+ "RequestMethod": "POST",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "333"
+ "x-ms-client-request-id": [
+ "26c1dd05-6f78-4efc-af7e-577aed0ef7ce"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "x-ms-client-request-id": [
- "d263b4d0-e325-47bf-9fe1-59d21757bca7"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake01989\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"datalake01989\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeAnalytics/accounts/testaba14192\",\r\n \"name\": \"testaba14192\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Length": [
- "497"
- ],
- "Content-Type": [
- "application/json"
- ],
"Expires": [
"-1"
],
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/28114281-a0ac-4479-83bb-d1ddfc161dbb0?api-version=2015-10-01-preview&expanded=true"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "9bd391d7-0f0b-451b-b440-afabf558afb7"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1153"
- ],
- "x-ms-correlation-request-id": [
- "4ec693d1-c056-4a8c-ac69-f61c960c1ce1"
+ "421d08cd-e6fc-46f4-ae68-21ab1d9cc9e9"
],
- "x-ms-routing-request-id": [
- "CENTRALUS:20151211T220519Z:4ec693d1-c056-4a8c-ac69-f61c960c1ce1"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "private"
],
"Date": [
- "Fri, 11 Dec 2015 22:05:19 GMT"
- ],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourcegroups/abarg17022/providers/Microsoft.DataLakeAnalytics/accounts/testaba14192/operationresults/0?api-version=2015-10-01-preview"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:10:49 GMT"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/28114281-a0ac-4479-83bb-d1ddfc161dbb0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8yODExNDI4MS1hMGFjLTQ0NzktODNiYi1kMWRkZmMxNjFkYmIwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
+ "RequestUri": "/Jobs/403e35af-1b5c-48ab-8a75-1ee88734ce20?api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnMvNDAzZTM1YWYtMWI1Yy00OGFiLThhNzUtMWVlODg3MzRjZTIwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "a0598400-91f1-4bfd-9844-dbfbcded7b9e"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"403e35af-1b5c-48ab-8a75-1ee88734ce20\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:10:47 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": \"Fri, 26 Feb 2016 02:10:48 GMT\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_UNKNOWN_CJS_CANCELEDBYUSERWITHOUTREASON\",\r\n \"name\": \"CANCELED_BY_USER_WITHOUT_REASON\",\r\n \"severity\": \"Info\",\r\n \"source\": \"Unknown\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"detail\": \"\",\r\n \"description\": \"Job was cancelled by adlsvc01@benwgoldoutlook.onmicrosoft.com.\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"internalDebugInfo\": null,\r\n \"innerError\": null\r\n }\r\n ],\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:10:47 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:adlsvc01@benwgoldoutlook.onmicrosoft.com;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:10:48 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"Fri, 26 Feb 2016 02:10:48 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://onesdk4880.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/10/403e35af-1b5c-48ab-8a75-1ee88734ce20/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://onesdk4880.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/10/403e35af-1b5c-48ab-8a75-1ee88734ce20/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://onesdk4880.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/02/26/02/10/403e35af-1b5c-48ab-8a75-1ee88734ce20/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:00.2968793\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1450,59 +1326,50 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "5f334ba8-85f6-4bf4-ae97-1e751ac37a15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14773"
+ "Transfer-Encoding": [
+ "chunked"
],
- "x-ms-correlation-request-id": [
- "23305958-f9ae-4eb8-8467-6ea05c6da7e9"
+ "x-ms-request-id": [
+ "024a7cdf-79b8-4213-bbe8-aea26cf12825"
],
- "x-ms-routing-request-id": [
- "CENTRALUS:20151211T220520Z:23305958-f9ae-4eb8-8467-6ea05c6da7e9"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "private"
],
"Date": [
- "Fri, 11 Dec 2015 22:05:19 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:10:50 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/28114281-a0ac-4479-83bb-d1ddfc161dbb0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8yODExNDI4MS1hMGFjLTQ0NzktODNiYi1kMWRkZmMxNjFkYmIwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
+ "RequestUri": "/Jobs?$filter=submitTime%20ge%20datetimeoffset'2016-02-25T18:05:50.9443598-08:00'&api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwZ2UlMjBkYXRldGltZW9mZnNldCcyMDE2LTAyLTI1VDE4OjA1OjUwLjk0NDM1OTgtMDg6MDAnJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "dfe7db79-c14f-42f5-afd2-8ed5d74263f6"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"403e35af-1b5c-48ab-8a75-1ee88734ce20\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:10:47 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": \"Fri, 26 Feb 2016 02:10:48 GMT\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"nextLink\": null,\r\n \"count\": null\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1510,59 +1377,50 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "00e3c72a-e959-43d7-b0eb-969b2c6a93c7"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14772"
+ "Transfer-Encoding": [
+ "chunked"
],
- "x-ms-correlation-request-id": [
- "34b94f72-41ad-4a96-ae3a-32d6e464e900"
+ "x-ms-request-id": [
+ "5f6a8cf0-4672-45a8-9a58-71432254677b"
],
- "x-ms-routing-request-id": [
- "CENTRALUS:20151211T220530Z:34b94f72-41ad-4a96-ae3a-32d6e464e900"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "private"
],
"Date": [
- "Fri, 11 Dec 2015 22:05:29 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:10:50 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/28114281-a0ac-4479-83bb-d1ddfc161dbb0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8yODExNDI4MS1hMGFjLTQ0NzktODNiYi1kMWRkZmMxNjFkYmIwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
+ "RequestUri": "/Jobs?$filter=submitTime%20lt%20datetimeoffset'2016-02-25T18:10:51.1356850-08:00'&api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwbHQlMjBkYXRldGltZW9mZnNldCcyMDE2LTAyLTI1VDE4OjEwOjUxLjEzNTY4NTAtMDg6MDAnJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "f03ff10f-a684-4111-a2a1-f725617017f2"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"403e35af-1b5c-48ab-8a75-1ee88734ce20\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 26 Feb 2016 02:10:47 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": \"Fri, 26 Feb 2016 02:10:48 GMT\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"nextLink\": null,\r\n \"count\": null\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "23"
- ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1570,59 +1428,47 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "3b46911b-79fa-4e70-84f4-23ee58a773e7"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14769"
+ "Transfer-Encoding": [
+ "chunked"
],
- "x-ms-correlation-request-id": [
- "7dd97358-dbf1-42b7-86c1-95a127641cb3"
+ "x-ms-request-id": [
+ "ca2223c1-4cd6-44cd-9e3f-848b7cb0def8"
],
- "x-ms-routing-request-id": [
- "CENTRALUS:20151211T220545Z:7dd97358-dbf1-42b7-86c1-95a127641cb3"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "private"
],
"Date": [
- "Fri, 11 Dec 2015 22:05:44 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:10:50 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/28114281-a0ac-4479-83bb-d1ddfc161dbb0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8yODExNDI4MS1hMGFjLTQ0NzktODNiYi1kMWRkZmMxNjFkYmIwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8755?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4NzU1P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "19c0d966-5682-47eb-a8a3-06429115bb25"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "22"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -1631,16 +1477,16 @@
"no-cache"
],
"x-ms-request-id": [
- "a476e52b-3f59-477d-accb-dbc7a65abf53"
+ "63ab9b2a-1821-4641-90de-7966919dc6c0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14765"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "89c0b681-8a7a-48b7-8b74-b54e5ad19642"
+ "75669cc2-20cd-45bb-aecd-f7f0d4d93a63"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220600Z:89c0b681-8a7a-48b7-8b74-b54e5ad19642"
+ "WESTUS:20160226T021054Z:75669cc2-20cd-45bb-aecd-f7f0d4d93a63"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1649,7 +1495,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:05:59 GMT"
+ "Fri, 26 Feb 2016 02:10:54 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1664,41 +1510,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/a2ba22db-a33b-49e1-b3f0-ea58f8a0b564?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvYTJiYTIyZGItYTMzYi00OWUxLWIzZjAtZWE1OGY4YTBiNTY0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"jobId\": \"a2ba22db-a33b-49e1-b3f0-ea58f8a0b564\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk3883/providers/Microsoft.DataLakeStore/accounts/onesdk4880?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazM4ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazQ4ODA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "259"
+ "x-ms-client-request-id": [
+ "80b8300f-aa22-4156-aafc-e747d4e48cc8"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-resource-group-name": [
- "abarg17022"
- ],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"a2ba22db-a33b-49e1-b3f0-ea58f8a0b564\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:08:02 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": null,\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:08:02 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://datalake01989.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/08/a2ba22db-a33b-49e1-b3f0-ea58f8a0b564/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:00\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
@@ -1706,112 +1536,107 @@
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"x-ms-request-id": [
- "4036db1d-0230-480b-8cf3-d4357740786f"
+ "93f35388-b8d2-4d34-b27d-eeb90b484e4a"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-correlation-request-id": [
+ "ce47ae58-350b-4d50-b22b-64df1f3ac9d1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T021058Z:ce47ae58-350b-4d50-b22b-64df1f3ac9d1"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
- "private"
+ "no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:08:03 GMT"
+ "Fri, 26 Feb 2016 02:10:58 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/a2ba22db-a33b-49e1-b3f0-ea58f8a0b564/CancelJob?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvYTJiYTIyZGItYTMzYi00OWUxLWIzZjAtZWE1OGY4YTBiNTY0L0NhbmNlbEpvYj9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=",
- "RequestMethod": "POST",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk3883?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-resource-group-name": [
- "abarg17022"
- ],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
"ResponseBody": "",
"ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
"Expires": [
"-1"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
],
"x-ms-request-id": [
- "63541d3d-d92e-41e4-9940-569e94bd5022"
+ "5b6fc0df-718e-4352-9d02-25b7ea9c8f64"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "5b6fc0df-718e-4352-9d02-25b7ea9c8f64"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T021059Z:5b6fc0df-718e-4352-9d02-25b7ea9c8f64"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
- "private"
+ "no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:08:04 GMT"
+ "Fri, 26 Feb 2016 02:10:59 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODgzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/Jobs/a2ba22db-a33b-49e1-b3f0-ea58f8a0b564?api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnMvYTJiYTIyZGItYTMzYi00OWUxLWIzZjAtZWE1OGY4YTBiNTY0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODgzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGd6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-resource-group-name": [
- "abarg17022"
- ],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"a2ba22db-a33b-49e1-b3f0-ea58f8a0b564\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": null,\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:08:02 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": \"Fri, 11 Dec 2015 22:08:04 GMT\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_UNKNOWN_CJS_CANCELEDBYUSERWITHOUTREASON\",\r\n \"name\": \"CANCELED_BY_USER_WITHOUT_REASON\",\r\n \"severity\": \"Info\",\r\n \"source\": \"Unknown\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"detail\": \"\",\r\n \"description\": \"Job was cancelled by admin@aad264.ccsctp.net.\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"internalDebugInfo\": null,\r\n \"innerError\": null\r\n }\r\n ],\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:08:02 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"userName:admin@aad264.ccsctp.net;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:08:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"Fri, 11 Dec 2015 22:08:04 GMT\",\r\n \"requestedByUser\": null,\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"admin@aad264.ccsctp.net\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://datalake01989.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/08/a2ba22db-a33b-49e1-b3f0-ea58f8a0b564/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://datalake01989.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/08/a2ba22db-a33b-49e1-b3f0-ea58f8a0b564/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS foo; CREATE DATABASE foo;\",\r\n \"algebraFilePath\": \"adl://datalake01989.caboaccountdogfood.net/system/jobservice/jobs/Usql/2015/12/11/22/08/a2ba22db-a33b-49e1-b3f0-ea58f8a0b564/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"00:00:00.4218810\",\r\n \"totalPausedTime\": \"00:00:00\",\r\n \"totalQueuedTime\": \"00:00:00\",\r\n \"totalRunningTime\": \"00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
@@ -1819,57 +1644,53 @@
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14983"
],
"x-ms-request-id": [
- "a2b18cba-ce1e-463e-a895-7942467b149d"
+ "5f65baff-8790-4b58-baed-b1a6124ef3d9"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "5f65baff-8790-4b58-baed-b1a6124ef3d9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T021100Z:5f65baff-8790-4b58-baed-b1a6124ef3d9"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
- "private"
+ "no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:08:06 GMT"
+ "Fri, 26 Feb 2016 02:10:59 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODgzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/Jobs?$filter=submitTime%20ge%20datetimeoffset'2015-12-11T14:03:06.3001316-08:00'&api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwZ2UlMjBkYXRldGltZW9mZnNldCUyNzIwMTUtMTItMTFUMTQlM0EwMyUzQTA2LjMwMDEzMTYtMDglM0EwMCUyNyZhcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODgzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGd6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-resource-group-name": [
- "abarg17022"
- ],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"a2ba22db-a33b-49e1-b3f0-ea58f8a0b564\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": \"28114281-a0ac-4479-83bb-d1ddfc161dbb\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:08:02 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": \"Fri, 11 Dec 2015 22:08:04 GMT\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"nextLink\": null,\r\n \"count\": null\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
@@ -1877,57 +1698,53 @@
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14982"
],
"x-ms-request-id": [
- "1b6b78cb-2c74-4172-9603-4dcd15692012"
+ "2189f4c9-58b5-4695-a05c-f77df5f11b68"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "2189f4c9-58b5-4695-a05c-f77df5f11b68"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T021115Z:2189f4c9-58b5-4695-a05c-f77df5f11b68"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
- "private"
+ "no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:08:06 GMT"
+ "Fri, 26 Feb 2016 02:11:15 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODgzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/Jobs?$filter=submitTime%20lt%20datetimeoffset'2015-12-11T14:08:06.5814916-08:00'&api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwbHQlMjBkYXRldGltZW9mZnNldCUyNzIwMTUtMTItMTFUMTQlM0EwOCUzQTA2LjU4MTQ5MTYtMDglM0EwMCUyNyZhcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODgzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGd6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-resource-group-name": [
- "abarg17022"
- ],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"a2ba22db-a33b-49e1-b3f0-ea58f8a0b564\",\r\n \"name\": \"TestJob\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"admin@aad264.ccsctp.net\",\r\n \"account\": \"28114281-a0ac-4479-83bb-d1ddfc161dbb\",\r\n \"degreeOfParallelism\": 1,\r\n \"priority\": 1000,\r\n \"submitTime\": \"Fri, 11 Dec 2015 22:08:02 GMT\",\r\n \"startTime\": null,\r\n \"endTime\": \"Fri, 11 Dec 2015 22:08:04 GMT\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": null,\r\n \"storageAccounts\": null,\r\n \"stateAuditRecords\": null,\r\n \"properties\": null\r\n }\r\n ],\r\n \"nextLink\": null,\r\n \"count\": null\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
@@ -1935,45 +1752,47 @@
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14981"
],
"x-ms-request-id": [
- "8683bb17-b467-4695-9d05-93028ec70ec7"
+ "b8df4b16-5c21-44c5-9a60-95e4915ae17d"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "b8df4b16-5c21-44c5-9a60-95e4915ae17d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T021130Z:b8df4b16-5c21-44c5-9a60-95e4915ae17d"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
- "private"
+ "no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:08:06 GMT"
+ "Fri, 26 Feb 2016 02:11:30 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODgzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17022/providers/Microsoft.DataLakeAnalytics/accounts/testaba14192?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTcwMjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxOTI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODgzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGd6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
"ResponseBody": "",
@@ -1987,17 +1806,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "9af4e3d1-6a21-4abe-bcf7-2f201a8ea9e1"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14980"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1153"
+ "x-ms-request-id": [
+ "47b135de-b043-4e52-98cb-15e294b20101"
],
"x-ms-correlation-request-id": [
- "cc035d2a-114e-4be7-9127-75b8a11bde41"
+ "47b135de-b043-4e52-98cb-15e294b20101"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220808Z:cc035d2a-114e-4be7-9127-75b8a11bde41"
+ "WESTUS:20160226T021145Z:47b135de-b043-4e52-98cb-15e294b20101"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2006,23 +1825,20 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:08:08 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:11:45 GMT"
]
},
"StatusCode": 200
}
],
- "Names": {},
+ "Names": {
+ "": [
+ "onesdk3883",
+ "onesdk8755",
+ "onesdk4880"
+ ]
+ },
"Variables": {
- "SubscriptionId": "0353d26d-e338-469a-a87a-bd3507471155"
+ "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f"
}
}
\ No newline at end of file
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 a8be27729eee..3e3df76721c7 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
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/register?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/register?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -10,7 +10,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1013"
@@ -25,16 +25,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-request-id": [
- "eb199c01-88ce-404f-ba31-c09b765a131c"
+ "f28008fc-9596-466d-b83a-2e4c8ee72935"
],
"x-ms-correlation-request-id": [
- "eb199c01-88ce-404f-ba31-c09b765a131c"
+ "f28008fc-9596-466d-b83a-2e4c8ee72935"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T235906Z:eb199c01-88ce-404f-ba31-c09b765a131c"
+ "WESTUS:20160226T022554Z:f28008fc-9596-466d-b83a-2e4c8ee72935"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,14 +43,14 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 23:59:06 GMT"
+ "Fri, 26 Feb 2016 02:25:54 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -58,7 +58,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1013"
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14994"
],
"x-ms-request-id": [
- "9aad29cc-83ff-47ad-815a-1d92aefbddc6"
+ "dadd62ea-2fb6-427c-a4a1-ee8850bc4f5b"
],
"x-ms-correlation-request-id": [
- "9aad29cc-83ff-47ad-815a-1d92aefbddc6"
+ "dadd62ea-2fb6-427c-a4a1-ee8850bc4f5b"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T235906Z:9aad29cc-83ff-47ad-815a-1d92aefbddc6"
+ "WESTUS:20160226T022554Z:dadd62ea-2fb6-427c-a4a1-ee8850bc4f5b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,31 +91,25 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 23:59:06 GMT"
+ "Fri, 26 Feb 2016 02:25:54 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/abarg17182?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTcxODI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk1367?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazEzNjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182\",\r\n \"name\": \"abarg17182\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "174"
+ "102"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,17 +120,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
],
"x-ms-request-id": [
- "a9f7b3f3-f42c-4749-b3f1-7b3c094ea1f1"
+ "08181693-91e4-4cd1-9205-c6819f279691"
],
"x-ms-correlation-request-id": [
- "a9f7b3f3-f42c-4749-b3f1-7b3c094ea1f1"
+ "08181693-91e4-4cd1-9205-c6819f279691"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T235907Z:a9f7b3f3-f42c-4749-b3f1-7b3c094ea1f1"
+ "WESTUS:20160226T022600Z:08181693-91e4-4cd1-9205-c6819f279691"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,28 +142,25 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 23:59:07 GMT"
+ "Fri, 26 Feb 2016 02:25:59 GMT"
]
},
- "StatusCode": 201
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/abarg17182?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlZ3JvdXBzL2FiYXJnMTcxODI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk1367?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazEzNjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182\",\r\n \"name\": \"abarg17182\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "174"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "0"
],
"Expires": [
"-1"
@@ -175,16 +169,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14991"
],
"x-ms-request-id": [
- "ad47977d-1cba-4fd8-98db-4079d645e1b3"
+ "6b841aab-4c66-4a9d-9ad8-4d7f909aa262"
],
"x-ms-correlation-request-id": [
- "ad47977d-1cba-4fd8-98db-4079d645e1b3"
+ "6b841aab-4c66-4a9d-9ad8-4d7f909aa262"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T235907Z:ad47977d-1cba-4fd8-98db-4079d645e1b3"
+ "WESTUS:20160226T022717Z:6b841aab-4c66-4a9d-9ad8-4d7f909aa262"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,44 +187,34 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 23:59:07 GMT"
+ "Fri, 26 Feb 2016 02:27:17 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 204
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeStore/accounts/datalake016148?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDE2MTQ4P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk1367?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazEzNjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"datalake016148\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "60"
- ],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "31"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
- ],
- "x-ms-client-request-id": [
- "92a37a03-a855-463d-b46e-465235e10cab"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeStore/accounts/datalake016148\",\r\n \"name\": \"datalake016148\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367\",\r\n \"name\": \"onesdk1367\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "364"
+ "174"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -238,23 +222,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/39910453-2529-4760-8a63-8e332377fb050?api-version=2015-10-01-preview&expanded=true"
- ],
- "x-ms-request-id": [
- "466db398-8455-4834-83af-c4ae6e18b0ae"
- ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
+ "x-ms-request-id": [
+ "ab68b3ea-46f9-4430-88f9-5b0fbeb68e93"
+ ],
"x-ms-correlation-request-id": [
- "40491429-1558-4703-aa3d-e8ae2e5aa811"
+ "ab68b3ea-46f9-4430-88f9-5b0fbeb68e93"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T235911Z:40491429-1558-4703-aa3d-e8ae2e5aa811"
+ "WESTUS:20160226T022601Z:ab68b3ea-46f9-4430-88f9-5b0fbeb68e93"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -263,43 +241,28 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 23:59:10 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/abarg17182/providers/Microsoft.DataLakeStore/accounts/datalake016148/operationresults/0?api-version=2015-10-01-preview"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:26:01 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/39910453-2529-4760-8a63-8e332377fb050?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzM5OTEwNDUzLTI1MjktNDc2MC04YTYzLThlMzMyMzc3ZmIwNTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "12"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -307,17 +270,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "d813fd96-e70c-4eef-b4f9-9add404502e1"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14992"
+ ],
+ "x-ms-request-id": [
+ "781c489e-a838-4cf4-826b-4d749e5e9208"
],
"x-ms-correlation-request-id": [
- "35a7940a-a707-450b-b78a-dbfbc3dbe29e"
+ "781c489e-a838-4cf4-826b-4d749e5e9208"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T235911Z:35a7940a-a707-450b-b78a-dbfbc3dbe29e"
+ "WESTUS:20160226T022601Z:781c489e-a838-4cf4-826b-4d749e5e9208"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -326,40 +289,34 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 23:59:11 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:26:01 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/39910453-2529-4760-8a63-8e332377fb050?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzM5OTEwNDUzLTI1MjktNDc2MC04YTYzLThlMzMyMzc3ZmIwNTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeStore/accounts/onesdk5569?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazU1Njk/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "9e49ab08-d202-4dc8-ae38-2c1b01cc87bc"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk5569' under resource group 'onesdk1367' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "157"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -367,17 +324,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "71310dd3-6ce4-42c2-9b02-642de4b83a55"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "x-ms-request-id": [
+ "d8a6d944-6701-45b8-80a7-ba606cd71951"
],
"x-ms-correlation-request-id": [
- "d29ed96a-169e-4f59-a690-6d1e1432bd23"
+ "d8a6d944-6701-45b8-80a7-ba606cd71951"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T235922Z:d29ed96a-169e-4f59-a690-6d1e1432bd23"
+ "WESTUS:20160226T022602Z:d8a6d944-6701-45b8-80a7-ba606cd71951"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -386,40 +343,34 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 23:59:22 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:26:01 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/39910453-2529-4760-8a63-8e332377fb050?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzM5OTEwNDUzLTI1MjktNDc2MC04YTYzLThlMzMyMzc3ZmIwNTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeStore/accounts/onesdk5569?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazU1Njk/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "a41adc46-f5d7-452a-819a-b052591da532"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk5569' under resource group 'onesdk1367' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "157"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -427,17 +378,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "55c4b315-82cc-4851-8eb4-3d7820a7d42d"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "x-ms-request-id": [
+ "8e60f1a6-a551-410c-b14b-580133675497"
],
"x-ms-correlation-request-id": [
- "bb9f9919-c100-4d7e-9296-e562cc2bd714"
+ "8e60f1a6-a551-410c-b14b-580133675497"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T235937Z:bb9f9919-c100-4d7e-9296-e562cc2bd714"
+ "WESTUS:20160226T022602Z:8e60f1a6-a551-410c-b14b-580133675497"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -446,37 +397,25 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 23:59:37 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:26:01 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/39910453-2529-4760-8a63-8e332377fb050?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzM5OTEwNDUzLTI1MjktNDc2MC04YTYzLThlMzMyMzc3ZmIwNTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeStore/accounts/onesdk5569?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazU1Njk/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk5569.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:26:06.7238645Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:26:06.7238645Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeStore/accounts/onesdk5569\",\r\n \"name\": \"onesdk5569\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "22"
+ "488"
],
"Content-Type": [
"application/json"
@@ -488,16 +427,16 @@
"no-cache"
],
"x-ms-request-id": [
- "976671fa-c652-434e-a747-56b7fa1cfe39"
+ "2b24c548-5e71-41d8-9c53-c69846123468"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14976"
],
"x-ms-correlation-request-id": [
- "601e3c0e-658e-42b5-9e91-88ddf283eeba"
+ "51733791-e6a1-4ec9-90ce-25c36371b97f"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T235953Z:601e3c0e-658e-42b5-9e91-88ddf283eeba"
+ "WESTUS:20160226T022636Z:51733791-e6a1-4ec9-90ce-25c36371b97f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -506,7 +445,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 23:59:52 GMT"
+ "Fri, 26 Feb 2016 02:26:35 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -521,26 +460,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeStore/accounts/datalake016148?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDE2MTQ4P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeStore/accounts/onesdk5569?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazU1Njk/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "x-ms-client-request-id": [
+ "792ef4ca-15f6-4f56-8a2f-9f7a1d2ef766"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"datalake016148.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-06T23:59:11.3389359Z\",\r\n \"lastModifiedTime\": \"2015-11-06T23:59:11.3389359Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeStore/accounts/datalake016148\",\r\n \"name\": \"datalake016148\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk5569.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:26:06.7238645Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:26:06.7238645Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeStore/accounts/onesdk5569\",\r\n \"name\": \"onesdk5569\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "456"
+ "488"
],
"Content-Type": [
"application/json"
@@ -552,16 +490,16 @@
"no-cache"
],
"x-ms-request-id": [
- "b72e5118-8746-4c57-82b9-43a5d15d0d27"
+ "7fbeba47-7ce7-418a-ae11-64d0db8876d7"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14975"
],
"x-ms-correlation-request-id": [
- "cf2e0b48-12d9-4fe9-8f47-762e62453e65"
+ "5f1a37e0-fb0f-4c97-bec0-29dec474542f"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T235953Z:cf2e0b48-12d9-4fe9-8f47-762e62453e65"
+ "WESTUS:20160226T022715Z:5f1a37e0-fb0f-4c97-bec0-29dec474542f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -570,7 +508,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 23:59:52 GMT"
+ "Fri, 26 Feb 2016 02:27:15 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -585,35 +523,31 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeStore/accounts/datalake028165?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDI4MTY1P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeStore/accounts/onesdk5569?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazU1Njk/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"datalake028165\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"onesdk5569\",\r\n \"tags\": {},\r\n \"properties\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "60"
+ "92"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "x-ms-client-request-id": [
+ "d84626c1-3667-4d2c-8ed7-a4fa0e2aa139"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-request-id": [
- "4ead4bce-28ad-43be-9153-1ec2a90eb1d3"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeStore/accounts/datalake028165\",\r\n \"name\": \"datalake028165\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeStore/accounts/onesdk5569\",\r\n \"name\": \"onesdk5569\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "364"
+ "354"
],
"Content-Type": [
"application/json"
@@ -628,19 +562,19 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1bf941e0-8351-4904-be5f-b4b532896b4e0?api-version=2015-10-01-preview&expanded=true"
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7bab0ea1-1f29-4e55-b7a3-0f57949c00ab0?api-version=2015-10-01-preview&expanded=true"
],
"x-ms-request-id": [
- "f0e39938-7f7d-4f62-8472-a92747266c38"
+ "d6bd98b5-91b5-4f5b-a8b0-24d591d77886"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1192"
],
"x-ms-correlation-request-id": [
- "260554c7-e498-434f-9115-48e902c584be"
+ "4b39c53f-21d6-43b4-b90b-0c5f9c66b93f"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T235954Z:260554c7-e498-434f-9115-48e902c584be"
+ "WESTUS:20160226T022605Z:4b39c53f-21d6-43b4-b90b-0c5f9c66b93f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -649,10 +583,10 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 23:59:54 GMT"
+ "Fri, 26 Feb 2016 02:26:04 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/abarg17182/providers/Microsoft.DataLakeStore/accounts/datalake028165/operationresults/0?api-version=2015-10-01-preview"
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk1367/providers/Microsoft.DataLakeStore/accounts/onesdk5569/operationresults/0?api-version=2015-10-01-preview"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -667,22 +601,19 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1bf941e0-8351-4904-be5f-b4b532896b4e0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzFiZjk0MWUwLTgzNTEtNDkwNC1iZTVmLWI0YjUzMjg5NmI0ZTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7bab0ea1-1f29-4e55-b7a3-0f57949c00ab0?api-version=2015-10-01-preview&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzdiYWIwZWExLTFmMjktNGU1NS1iN2EzLTBmNTc5NDljMDBhYjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.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"
@@ -694,16 +625,16 @@
"no-cache"
],
"x-ms-request-id": [
- "d247ef53-2348-4685-a0ad-cede02bb1c6d"
+ "5382c940-f2db-4eaa-8867-ec2d5b257f54"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14983"
+ "14977"
],
"x-ms-correlation-request-id": [
- "c5409652-4a31-4687-bb84-e92715a7f8f3"
+ "aa690e9b-42bb-47d5-a520-4386ededf9e4"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T235955Z:c5409652-4a31-4687-bb84-e92715a7f8f3"
+ "WESTUS:20160226T022635Z:aa690e9b-42bb-47d5-a520-4386ededf9e4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -712,7 +643,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 23:59:55 GMT"
+ "Fri, 26 Feb 2016 02:26:35 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -727,25 +658,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1bf941e0-8351-4904-be5f-b4b532896b4e0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzFiZjk0MWUwLTgzNTEtNDkwNC1iZTVmLWI0YjUzMjg5NmI0ZTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4MjY2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "63759084-0085-45fc-ad39-be11174b8aab"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.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/onesdk8266' under resource group 'onesdk1367' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "161"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -753,17 +687,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "6c882f84-d092-4d5d-88f2-8bab85e45133"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14982"
+ "x-ms-request-id": [
+ "bf941aaa-ca68-4f70-a358-7d1a2cea3698"
],
"x-ms-correlation-request-id": [
- "426037e0-0b2d-4396-9abf-91aee85dcbfa"
+ "bf941aaa-ca68-4f70-a358-7d1a2cea3698"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000005Z:426037e0-0b2d-4396-9abf-91aee85dcbfa"
+ "WESTUS:20160226T022636Z:bf941aaa-ca68-4f70-a358-7d1a2cea3698"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -772,37 +706,79 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:00:05 GMT"
+ "Fri, 26 Feb 2016 02:26:35 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4MjY2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2626a956-4c8d-4ff7-babc-b143fbbcd1d1"
],
- "Server": [
- "Microsoft-IIS/8.5"
+ "accept-language": [
+ "en-US"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/onesdk8266' under resource group 'onesdk1367' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "161"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "2f60a6c0-df7e-4bf3-a621-c4300c544720"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f60a6c0-df7e-4bf3-a621-c4300c544720"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T022636Z:2f60a6c0-df7e-4bf3-a621-c4300c544720"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:26:36 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1bf941e0-8351-4904-be5f-b4b532896b4e0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzFiZjk0MWUwLTgzNTEtNDkwNC1iZTVmLWI0YjUzMjg5NmI0ZTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4MjY2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk5569\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk5569\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8266.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:26:39.7515966Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:26:39.7515966Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266\",\r\n \"name\": \"onesdk8266\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "659"
],
"Content-Type": [
"application/json"
@@ -814,16 +790,16 @@
"no-cache"
],
"x-ms-request-id": [
- "0cf32c3f-a688-4f5d-872a-54f775817608"
+ "91a8c49c-0f0f-42a2-a7b4-d02e7dbf5265"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14981"
+ "14995"
],
"x-ms-correlation-request-id": [
- "245404ba-14c4-417d-a4fd-865721aab8ee"
+ "252cb4d3-880f-4887-963f-b7a81edc2124"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000021Z:245404ba-14c4-417d-a4fd-865721aab8ee"
+ "WESTUS:20160226T022710Z:252cb4d3-880f-4887-963f-b7a81edc2124"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -832,7 +808,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:00:21 GMT"
+ "Fri, 26 Feb 2016 02:27:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -847,22 +823,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1bf941e0-8351-4904-be5f-b4b532896b4e0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzFiZjk0MWUwLTgzNTEtNDkwNC1iZTVmLWI0YjUzMjg5NmI0ZTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4MjY2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "bc57eb24-a34b-4d5e-8b08-b429e16ce7a1"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk5569\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk5569\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8266.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:26:39.7515966Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:26:39.7515966Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266\",\r\n \"name\": \"onesdk8266\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "22"
+ "659"
],
"Content-Type": [
"application/json"
@@ -874,16 +853,16 @@
"no-cache"
],
"x-ms-request-id": [
- "401ce3f0-3e41-4f83-818f-2e3f3d24e023"
+ "082a3719-1ab0-4650-9389-e435535c7603"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14980"
+ "14994"
],
"x-ms-correlation-request-id": [
- "588d97c0-7db3-4edd-89d9-7e692c4c3db1"
+ "db136017-5e7b-4be9-ac34-ba4df027d528"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000036Z:588d97c0-7db3-4edd-89d9-7e692c4c3db1"
+ "WESTUS:20160226T022710Z:db136017-5e7b-4be9-ac34-ba4df027d528"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -892,7 +871,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:00:35 GMT"
+ "Fri, 26 Feb 2016 02:27:10 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -907,26 +886,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeStore/accounts/datalake028165?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDI4MTY1P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4MjY2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "x-ms-client-request-id": [
+ "0e8c6a13-f7e9-4809-b690-9a64106a07f5"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"datalake028165.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-06T23:59:55.9676206Z\",\r\n \"lastModifiedTime\": \"2015-11-06T23:59:55.9676206Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeStore/accounts/datalake028165\",\r\n \"name\": \"datalake028165\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk5569\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk5569\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8266.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:26:39.7515966Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:26:39.7515966Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266\",\r\n \"name\": \"onesdk8266\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "456"
+ "659"
],
"Content-Type": [
"application/json"
@@ -938,16 +916,16 @@
"no-cache"
],
"x-ms-request-id": [
- "0e92ef8a-6ae5-4c25-afdb-5e72dbe02571"
+ "547b8500-28e7-4644-922b-23a537170793"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14979"
+ "14993"
],
"x-ms-correlation-request-id": [
- "941a913b-5a1b-4578-9a9a-c4aff17da1e7"
+ "7d45bb30-8c26-468a-a82f-bed489833fde"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000036Z:941a913b-5a1b-4578-9a9a-c4aff17da1e7"
+ "WESTUS:20160226T022710Z:7d45bb30-8c26-468a-a82f-bed489833fde"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -956,7 +934,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:00:35 GMT"
+ "Fri, 26 Feb 2016 02:27:10 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -971,28 +949,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.Storage/storageAccounts/azureblob014486?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTQ0ODY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4MjY2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Content-Length": [
- "91"
- ],
"x-ms-client-request-id": [
- "ff1c35c4-eab7-4aae-a072-503f2f37ecfc"
+ "08db2211-54db-4ab9-898f-8d1d8792f997"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk5569\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk5569\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8266.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:26:39.7515966Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:26:39.7515966Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266\",\r\n \"name\": \"onesdk8266\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "0"
+ "659"
+ ],
+ "Content-Type": [
+ "application/json"
],
"Expires": [
"-1"
@@ -1000,57 +978,62 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "25"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
- ],
"x-ms-request-id": [
- "9a443d45-c769-4580-8537-8d08d4eb1f43"
- ],
- "Cache-Control": [
- "no-cache"
+ "b5dc6c35-7bb1-421a-ae52-d614d2ea220d"
],
- "Location": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.Storage/operations/afbb133a-5cb5-4f50-a585-ed90081c5d78?monitor=true&api-version=2015-06-15"
- ],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14990"
],
"x-ms-correlation-request-id": [
- "9a443d45-c769-4580-8537-8d08d4eb1f43"
+ "3c0f03e4-4b63-45fa-b3f1-becec7552a51"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000039Z:9a443d45-c769-4580-8537-8d08d4eb1f43"
+ "WESTUS:20160226T022711Z:3c0f03e4-4b63-45fa-b3f1-becec7552a51"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "Cache-Control": [
+ "no-cache"
+ ],
"Date": [
- "Sat, 07 Nov 2015 00:00:39 GMT"
+ "Fri, 26 Feb 2016 02:27:11 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.Storage/operations/afbb133a-5cb5-4f50-a585-ed90081c5d78?monitor=true&api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2FmYmIxMzNhLTVjYjUtNGY1MC1hNTg1LWVkOTAwODFjNWQ3OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4MjY2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ebcdc2d6-17c6-47a9-962b-f4d752ea49e2"
+ "333fed57-61d1-4a47-a6f2-bdc27a264521"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/onesdk8266' under resource group 'onesdk1367' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "0"
+ "161"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1058,229 +1041,50 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "25"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "x-ms-failure-cause": [
+ "gateway"
],
"x-ms-request-id": [
- "e8db4b85-ca4a-4fb1-826c-dd94ead35632"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.Storage/operations/afbb133a-5cb5-4f50-a585-ed90081c5d78?monitor=true&api-version=2015-06-15"
- ],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-correlation-request-id": [
- "e8db4b85-ca4a-4fb1-826c-dd94ead35632"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20151107T000039Z:e8db4b85-ca4a-4fb1-826c-dd94ead35632"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Date": [
- "Sat, 07 Nov 2015 00:00:39 GMT"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.Storage/operations/afbb133a-5cb5-4f50-a585-ed90081c5d78?monitor=true&api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2FmYmIxMzNhLTVjYjUtNGY1MC1hNTg1LWVkOTAwODFjNWQ3OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "88d54da0-4a90-4375-a712-d3c5d439d19f"
- ],
- "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}",
- "ResponseHeaders": {
- "Content-Length": [
- "91"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "aa34e0c2-58c5-4d11-bb19-6fd382ce9e9b"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "74f4d4e8-b2b6-402c-b5e8-d8b65ecde292"
],
"x-ms-correlation-request-id": [
- "aa34e0c2-58c5-4d11-bb19-6fd382ce9e9b"
+ "74f4d4e8-b2b6-402c-b5e8-d8b65ecde292"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000105Z:aa34e0c2-58c5-4d11-bb19-6fd382ce9e9b"
+ "WESTUS:20160226T022714Z:74f4d4e8-b2b6-402c-b5e8-d8b65ecde292"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Date": [
- "Sat, 07 Nov 2015 00:01:04 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.Storage/storageAccounts/azureblob014486/listKeys?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTQ0ODYvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "66c821b5-057c-44bc-8ae1-cc9c66a8dba2"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"key1\": \"SBFNPCRluteExfvEJeDak6ga+U7ec28QiOxKGSibXk1PLurzL+bH3PPYex7/GcK4ifLDgTZn7lQScy8ZlRCKAQ==\",\r\n \"key2\": \"aBAnQcGPkHqeAQllvXi9pgnZE8hrCnnhA+QqzCKZByx12oKjFIW/X/AnF/X2nRzS5y+W2IK5aDLH4Z1BuFgN9Q==\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "198"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "2297585b-8bf6-4c08-a4bd-631ba8046a8e"
- ],
"Cache-Control": [
"no-cache"
],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
- ],
- "x-ms-correlation-request-id": [
- "2297585b-8bf6-4c08-a4bd-631ba8046a8e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20151107T000105Z:2297585b-8bf6-4c08-a4bd-631ba8046a8e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
"Date": [
- "Sat, 07 Nov 2015 00:01:05 GMT"
+ "Fri, 26 Feb 2016 02:27:13 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.Storage/storageAccounts/azureblob014486?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9henVyZWJsb2IwMTQ0ODY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4MjY2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "62cfe4c5-9d53-4d9a-a6a6-920535df86e1"
+ "16aed2c5-824d-4be2-9263-bda6dba3bbd0"
],
- "User-Agent": [
- "Microsoft.Azure.Management.Storage.StorageManagementClient/3.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.Storage/storageAccounts/azureblob014486\",\r\n \"location\": \"eastus2\",\r\n \"name\": \"azureblob014486\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2015-11-07T00:00:38.7439679Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://azureblob014486.blob.core.windows.net/\",\r\n \"file\": \"https://azureblob014486.file.core.windows.net/\",\r\n \"queue\": \"https://azureblob014486.queue.core.windows.net/\",\r\n \"table\": \"https://azureblob014486.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}",
- "ResponseHeaders": {
- "Content-Length": [
- "739"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "b29a904a-9d70-42f9-a9b3-9e4402c039df"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
- ],
- "x-ms-correlation-request-id": [
- "b29a904a-9d70-42f9-a9b3-9e4402c039df"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20151107T000105Z:b29a904a-9d70-42f9-a9b3-9e4402c039df"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Date": [
- "Sat, 07 Nov 2015 00:01:05 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/testaba16747?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTY3NDc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba16747' under resource group 'abarg17182' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/onesdk8266' under resource group 'onesdk1367' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "163"
+ "161"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1295,13 +1099,13 @@
"gateway"
],
"x-ms-request-id": [
- "c18277a2-a826-482b-9ce7-65469b18dace"
+ "d62b7f0b-1244-48f1-894d-130180154738"
],
"x-ms-correlation-request-id": [
- "c18277a2-a826-482b-9ce7-65469b18dace"
+ "d62b7f0b-1244-48f1-894d-130180154738"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000117Z:c18277a2-a826-482b-9ce7-65469b18dace"
+ "WESTUS:20160226T022714Z:d62b7f0b-1244-48f1-894d-130180154738"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1310,35 +1114,31 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:01:16 GMT"
+ "Fri, 26 Feb 2016 02:27:13 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/testaba16747?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTY3NDc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4MjY2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "10ed388e-5be5-4205-84fb-b4aeb24a3606"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba16747' under resource group 'abarg17182' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/onesdk8266' under resource group 'onesdk1367' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "163"
+ "161"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1353,13 +1153,13 @@
"gateway"
],
"x-ms-request-id": [
- "0d6a1e77-b353-4aa5-a5ab-39b64fed80d3"
+ "4668441d-bdff-461f-abac-583116c4b0ce"
],
"x-ms-correlation-request-id": [
- "0d6a1e77-b353-4aa5-a5ab-39b64fed80d3"
+ "4668441d-bdff-461f-abac-583116c4b0ce"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000117Z:0d6a1e77-b353-4aa5-a5ab-39b64fed80d3"
+ "WESTUS:20160226T022715Z:4668441d-bdff-461f-abac-583116c4b0ce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1368,35 +1168,37 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:01:16 GMT"
+ "Fri, 26 Feb 2016 02:27:14 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/testaba16747?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTY3NDc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4MjY2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"onesdk8266\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk5569\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"onesdk5569\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "233"
+ ],
+ "x-ms-client-request-id": [
+ "6caf5aea-9a30-40b7-8cc7-7b5fb07ff905"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016148\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"datalake016148\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba16747.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:01:20.3464228Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:01:20.3464228Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/testaba16747\",\r\n \"name\": \"testaba16747\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk5569\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"onesdk5569\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266\",\r\n \"name\": \"onesdk8266\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "673"
+ "453"
],
"Content-Type": [
"application/json"
@@ -1407,17 +1209,23 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/dcc187e8-96ce-491e-9a0f-dba0925263a60?api-version=2015-10-01-preview&expanded=true"
+ ],
"x-ms-request-id": [
- "4ecbde83-acc9-41eb-8e32-1d812532506b"
+ "007620ea-017d-4b7c-bdf3-c32b2129263b"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14958"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
],
"x-ms-correlation-request-id": [
- "d04ea773-7d81-481f-88e7-11619d86dd99"
+ "001f604b-5313-45d3-8c6d-628a52a05705"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000201Z:d04ea773-7d81-481f-88e7-11619d86dd99"
+ "WESTUS:20160226T022639Z:001f604b-5313-45d3-8c6d-628a52a05705"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1426,7 +1234,10 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:02:01 GMT"
+ "Fri, 26 Feb 2016 02:26:39 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266/operationresults/0?api-version=2015-10-01-preview"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1438,32 +1249,22 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/testaba16747?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTY3NDc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/dcc187e8-96ce-491e-9a0f-dba0925263a60?api-version=2015-10-01-preview&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9kY2MxODdlOC05NmNlLTQ5MWUtOWEwZi1kYmEwOTI1MjYzYTYwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016148\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"datalake016148\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba16747.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:01:20.3464228Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:01:20.3464228Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/testaba16747\",\r\n \"name\": \"testaba16747\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "673"
+ "22"
],
"Content-Type": [
"application/json"
@@ -1475,16 +1276,16 @@
"no-cache"
],
"x-ms-request-id": [
- "4a7b7a0f-ac37-45ab-bb8b-99d31c48e1cb"
+ "6a21f590-94a5-4d39-8758-75d050375e5a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14957"
+ "14996"
],
"x-ms-correlation-request-id": [
- "074f6c98-0520-45bb-bef2-8dac6476011b"
+ "2378fbc6-04b5-4db2-8ac8-48f128d16297"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000201Z:074f6c98-0520-45bb-bef2-8dac6476011b"
+ "WESTUS:20160226T022710Z:2378fbc6-04b5-4db2-8ac8-48f128d16297"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1493,7 +1294,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:02:01 GMT"
+ "Fri, 26 Feb 2016 02:27:09 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1508,32 +1309,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/testaba16747?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTY3NDc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9wc2Zha2VkYXRhTGFrZUFuYWx5dGljc2FjY291bnR0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "8fb99111-aa4d-467d-8542-d55969d9cbd8"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016148\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"datalake016148\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba16747.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2015-11-07T00:01:20.3464228Z\",\r\n \"lastModifiedTime\": \"2015-11-07T00:01:20.3464228Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/testaba16747\",\r\n \"name\": \"testaba16747\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest' under resource group 'onesdk1367' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "673"
+ "185"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1541,17 +1338,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "c55f85e8-324c-4e0e-9226-07191a273648"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14956"
+ "x-ms-request-id": [
+ "18520817-1bf8-43f5-9f0f-e21862fb53fa"
],
"x-ms-correlation-request-id": [
- "8c5712b8-ca95-4050-95ab-62aa8a96d005"
+ "18520817-1bf8-43f5-9f0f-e21862fb53fa"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000201Z:8c5712b8-ca95-4050-95ab-62aa8a96d005"
+ "WESTUS:20160226T022710Z:18520817-1bf8-43f5-9f0f-e21862fb53fa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1560,44 +1357,31 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:02:01 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:27:10 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/testaba16747?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTY3NDc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9wc2Zha2VkYXRhTGFrZUFuYWx5dGljc2FjY291bnR0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "16779efd-b146-441f-90a4-b66f7ffba8ad"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba16747' under resource group 'abarg17182' 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 'onesdk1367' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "163"
+ "185"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1612,13 +1396,13 @@
"gateway"
],
"x-ms-request-id": [
- "f182b00a-9182-4876-b38d-a2d4996f4a75"
+ "c3265301-50dc-448e-80e9-54696b620d4f"
],
"x-ms-correlation-request-id": [
- "f182b00a-9182-4876-b38d-a2d4996f4a75"
+ "c3265301-50dc-448e-80e9-54696b620d4f"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000203Z:f182b00a-9182-4876-b38d-a2d4996f4a75"
+ "WESTUS:20160226T022711Z:c3265301-50dc-448e-80e9-54696b620d4f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1627,40 +1411,40 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:02:03 GMT"
+ "Fri, 26 Feb 2016 02:27:10 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/testaba16747?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTY3NDc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9wc2Zha2VkYXRhTGFrZUFuYWx5dGljc2FjY291bnR0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"testaba16747\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016148\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"datalake016148\"\r\n }\r\n ],\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"name\": \"psfakedataLakeAnalyticsaccounttest\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"properties\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "335"
- ],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "121"
],
"x-ms-client-request-id": [
- "a070eb16-e5ce-44a4-aa3c-17c198679fc8"
+ "4d57ee4c-a988-4922-982c-bbcf58b155b5"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake016148\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"datalake016148\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/testaba16747\",\r\n \"name\": \"testaba16747\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"LocationRequired\",\r\n \"message\": \"The location property is required for this definition.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "499"
+ "104"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1668,23 +1452,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/3b64e8cc-56f1-4fed-9954-1892a3858de90?api-version=2015-10-01-preview&expanded=true"
+ "x-ms-failure-cause": [
+ "gateway"
],
"x-ms-request-id": [
- "4ce9d8a3-de1c-4558-98b9-5dab7346916f"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "12698f83-0d5c-4a9b-82dd-72b68c4d8dec"
],
"x-ms-correlation-request-id": [
- "eab29a8c-4150-4ec9-be99-2114b08c77a0"
+ "12698f83-0d5c-4a9b-82dd-72b68c4d8dec"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000119Z:eab29a8c-4150-4ec9-be99-2114b08c77a0"
+ "WESTUS:20160226T022711Z:12698f83-0d5c-4a9b-82dd-72b68c4d8dec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1693,43 +1471,31 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:01:18 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/testaba16747/operationresults/0?api-version=2015-10-01-preview"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:27:10 GMT"
]
},
- "StatusCode": 201
+ "StatusCode": 400
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/3b64e8cc-56f1-4fed-9954-1892a3858de90?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8zYjY0ZThjYy01NmYxLTRmZWQtOTk1NC0xODkyYTM4NThkZTkwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeAnalytics/accounts/onesdk8266?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGs4MjY2P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "60d704cb-e0a8-4708-9e69-d7ff97fa07a4"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -1738,16 +1504,16 @@
"no-cache"
],
"x-ms-request-id": [
- "7562c8eb-761e-4893-ae2e-0b6e7e45d03a"
+ "03c44de3-c3aa-42f3-8ec1-48de85c2563f"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14965"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
],
"x-ms-correlation-request-id": [
- "d3bd9fc2-e9f8-4f9a-81fb-c9151a3639e9"
+ "adf29191-3178-422e-8305-6d27b3654873"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000119Z:d3bd9fc2-e9f8-4f9a-81fb-c9151a3639e9"
+ "WESTUS:20160226T022714Z:adf29191-3178-422e-8305-6d27b3654873"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1756,7 +1522,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:01:18 GMT"
+ "Fri, 26 Feb 2016 02:27:13 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1771,25 +1537,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/3b64e8cc-56f1-4fed-9954-1892a3858de90?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8zYjY0ZThjYy01NmYxLTRmZWQtOTk1NC0xODkyYTM4NThkZTkwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1367/providers/Microsoft.DataLakeStore/accounts/onesdk5569?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazEzNjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazU1Njk/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "cc4b171b-00cb-4540-9984-a5c544e76eac"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -1798,16 +1564,16 @@
"no-cache"
],
"x-ms-request-id": [
- "ef343274-f18b-4f95-97a9-6ef3357a1417"
+ "7c4c499e-a4ff-4f0d-8f27-ace81b4d2baf"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14964"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1191"
],
"x-ms-correlation-request-id": [
- "cd403a9a-0179-44a1-97e0-bdfa1e500b7b"
+ "8b42c26e-8f16-4bfa-9aff-f26843db85b1"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000130Z:cd403a9a-0179-44a1-97e0-bdfa1e500b7b"
+ "WESTUS:20160226T022718Z:8b42c26e-8f16-4bfa-9aff-f26843db85b1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1816,7 +1582,7 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:01:29 GMT"
+ "Fri, 26 Feb 2016 02:27:18 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1831,25 +1597,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/3b64e8cc-56f1-4fed-9954-1892a3858de90?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8zYjY0ZThjYy01NmYxLTRmZWQtOTk1NC0xODkyYTM4NThkZTkwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk1367?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazEzNjc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -1857,17 +1617,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "e3249888-31db-446c-a6d2-cf470d8a6503"
+ "Retry-After": [
+ "15"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14961"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-request-id": [
+ "f896bbb9-d4a0-4bfb-ad00-44fcf7244989"
],
"x-ms-correlation-request-id": [
- "26851e42-5582-4d65-8e15-d5f962054ca8"
+ "f896bbb9-d4a0-4bfb-ad00-44fcf7244989"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000145Z:26851e42-5582-4d65-8e15-d5f962054ca8"
+ "WESTUS:20160226T022719Z:f896bbb9-d4a0-4bfb-ad00-44fcf7244989"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1876,40 +1639,31 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:01:44 GMT"
+ "Fri, 26 Feb 2016 02:27:19 GMT"
],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzY3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/3b64e8cc-56f1-4fed-9954-1892a3858de90?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8zYjY0ZThjYy01NmYxLTRmZWQtOTk1NC0xODkyYTM4NThkZTkwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzY3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNelkzTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-version": [
- "2015-10-01-preview"
+ "2014-04-01-preview"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "22"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -1917,17 +1671,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "523639d2-74ae-4e61-bb98-d1d2c7a0db48"
+ "Retry-After": [
+ "15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14959"
+ "14990"
+ ],
+ "x-ms-request-id": [
+ "5b92af89-1159-4fb4-874c-6fa963aba1df"
],
"x-ms-correlation-request-id": [
- "0d7f4f04-c8cf-4813-8f62-5e68d35b4ad8"
+ "5b92af89-1159-4fb4-874c-6fa963aba1df"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000201Z:0d7f4f04-c8cf-4813-8f62-5e68d35b4ad8"
+ "WESTUS:20160226T022719Z:5b92af89-1159-4fb4-874c-6fa963aba1df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1936,47 +1693,31 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:02:01 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
+ "Fri, 26 Feb 2016 02:27:19 GMT"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzY3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9wc2Zha2VkYXRhTGFrZUFuYWx5dGljc2FjY291bnR0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzY3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNelkzTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest' under resource group 'abarg17182' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "185"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "0"
],
"Expires": [
"-1"
@@ -1984,17 +1725,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14989"
],
"x-ms-request-id": [
- "06b3af97-6723-4a01-9a3d-26cdadd6d48f"
+ "37417751-d71b-41fc-a246-1e443e55d629"
],
"x-ms-correlation-request-id": [
- "06b3af97-6723-4a01-9a3d-26cdadd6d48f"
+ "37417751-d71b-41fc-a246-1e443e55d629"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000201Z:06b3af97-6723-4a01-9a3d-26cdadd6d48f"
+ "WESTUS:20160226T022734Z:37417751-d71b-41fc-a246-1e443e55d629"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2003,38 +1747,31 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:02:01 GMT"
+ "Fri, 26 Feb 2016 02:27:34 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzY3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 404
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9wc2Zha2VkYXRhTGFrZUFuYWx5dGljc2FjY291bnR0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzY3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNelkzTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest' under resource group 'abarg17182' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "185"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "0"
],
"Expires": [
"-1"
@@ -2042,77 +1779,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
- ],
- "x-ms-request-id": [
- "79466c9e-9542-431f-b052-6f51a4b90448"
- ],
- "x-ms-correlation-request-id": [
- "79466c9e-9542-431f-b052-6f51a4b90448"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20151107T000202Z:79466c9e-9542-431f-b052-6f51a4b90448"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Sat, 07 Nov 2015 00:02:01 GMT"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/psfakedataLakeAnalyticsaccounttest?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9wc2Zha2VkYXRhTGFrZUFuYWx5dGljc2FjY291bnR0ZXN0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"name\": \"psfakedataLakeAnalyticsaccounttest\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"properties\": {\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n }\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "216"
- ],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
- ],
- "x-ms-client-request-id": [
- "a4539d9d-9d2c-4e77-8840-93dbd49d2c62"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"LocationRequired\",\r\n \"message\": \"The location property is required for this definition.\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "104"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
+ "Retry-After": [
+ "15"
],
- "x-ms-failure-cause": [
- "gateway"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14988"
],
"x-ms-request-id": [
- "4d2ae19f-a2c4-4835-b884-8f59f46f7b01"
+ "fac7b73b-d79b-416c-b33d-ac1df2ce87ec"
],
"x-ms-correlation-request-id": [
- "4d2ae19f-a2c4-4835-b884-8f59f46f7b01"
+ "fac7b73b-d79b-416c-b33d-ac1df2ce87ec"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000202Z:4d2ae19f-a2c4-4835-b884-8f59f46f7b01"
+ "WESTUS:20160226T022750Z:fac7b73b-d79b-416c-b33d-ac1df2ce87ec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2121,29 +1801,25 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:02:01 GMT"
+ "Fri, 26 Feb 2016 02:27:49 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzY3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 400
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/abarg17182/providers/Microsoft.DataLakeAnalytics/accounts/testaba16747?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2FiYXJnMTcxODIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTY3NDc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMzY3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNelkzTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
"ResponseBody": "",
@@ -2157,17 +1833,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "e33238b4-933b-47d2-bb53-90ba2bc79810"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14987"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "x-ms-request-id": [
+ "195538ba-7d63-4add-8eed-0fda732aec0b"
],
"x-ms-correlation-request-id": [
- "4e25cfe7-feb6-45ee-9715-a3b3021fb61c"
+ "195538ba-7d63-4add-8eed-0fda732aec0b"
],
"x-ms-routing-request-id": [
- "WESTUS:20151107T000203Z:4e25cfe7-feb6-45ee-9715-a3b3021fb61c"
+ "WESTUS:20160226T022805Z:195538ba-7d63-4add-8eed-0fda732aec0b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2176,23 +1852,20 @@
"no-cache"
],
"Date": [
- "Sat, 07 Nov 2015 00:02:03 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:28:04 GMT"
]
},
"StatusCode": 200
}
],
- "Names": {},
+ "Names": {
+ "": [
+ "onesdk1367",
+ "onesdk8266",
+ "onesdk5569"
+ ]
+ },
"Variables": {
- "SubscriptionId": "46153750-fa3b-4140-bf57-8beb7d5c971a"
+ "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f"
}
}
\ No newline at end of file
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 300fe757a878..9567a21c2a09 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
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/register?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/register?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -10,10 +10,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1573"
+ "1013"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25,16 +25,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1102"
+ "1195"
],
"x-ms-request-id": [
- "22954315-b065-4c9e-b186-30fd66a4bc46"
+ "25696d01-6a89-4a60-bc91-7abbddfdade3"
],
"x-ms-correlation-request-id": [
- "22954315-b065-4c9e-b186-30fd66a4bc46"
+ "25696d01-6a89-4a60-bc91-7abbddfdade3"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220843Z:22954315-b065-4c9e-b186-30fd66a4bc46"
+ "WESTUS:20160226T022343Z:25696d01-6a89-4a60-bc91-7abbddfdade3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,14 +43,14 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:08:43 GMT"
+ "Fri, 26 Feb 2016 02:23:42 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -58,10 +58,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1573"
+ "1013"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14705"
+ "14993"
],
"x-ms-request-id": [
- "7e8a3e39-bcc2-4cbb-b1ba-a39067a52f02"
+ "c6b75cf3-ada7-4291-ae62-4ad2d69a5fde"
],
"x-ms-correlation-request-id": [
- "7e8a3e39-bcc2-4cbb-b1ba-a39067a52f02"
+ "c6b75cf3-ada7-4291-ae62-4ad2d69a5fde"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220843Z:7e8a3e39-bcc2-4cbb-b1ba-a39067a52f02"
+ "WESTUS:20160226T022343Z:c6b75cf3-ada7-4291-ae62-4ad2d69a5fde"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,31 +91,25 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:08:43 GMT"
+ "Fri, 26 Feb 2016 02:23:42 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourcegroups/abarg17913?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlZ3JvdXBzL2FiYXJnMTc5MTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5924?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazU5MjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913\",\r\n \"name\": \"abarg17913\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "174"
+ "102"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,17 +120,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1101"
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
],
"x-ms-request-id": [
- "00a59c79-0f2b-4979-aba4-22d6c54a0b57"
+ "d57e6da1-0dc9-4a2e-a67c-dfc42a33d5f1"
],
"x-ms-correlation-request-id": [
- "00a59c79-0f2b-4979-aba4-22d6c54a0b57"
+ "d57e6da1-0dc9-4a2e-a67c-dfc42a33d5f1"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220843Z:00a59c79-0f2b-4979-aba4-22d6c54a0b57"
+ "WESTUS:20160226T022348Z:d57e6da1-0dc9-4a2e-a67c-dfc42a33d5f1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,28 +142,25 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:08:43 GMT"
+ "Fri, 26 Feb 2016 02:23:48 GMT"
]
},
- "StatusCode": 201
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourcegroups/abarg17913?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlZ3JvdXBzL2FiYXJnMTc5MTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5924?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazU5MjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913\",\r\n \"name\": \"abarg17913\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "174"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "0"
],
"Expires": [
"-1"
@@ -175,16 +169,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14704"
+ "14990"
],
"x-ms-request-id": [
- "09884a4d-6fe3-4fa3-8491-b335d535828e"
+ "7ece0cd6-1111-469b-a782-f3612cf614f0"
],
"x-ms-correlation-request-id": [
- "09884a4d-6fe3-4fa3-8491-b335d535828e"
+ "7ece0cd6-1111-469b-a782-f3612cf614f0"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220844Z:09884a4d-6fe3-4fa3-8491-b335d535828e"
+ "WESTUS:20160226T022503Z:7ece0cd6-1111-469b-a782-f3612cf614f0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,44 +187,34 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:08:43 GMT"
+ "Fri, 26 Feb 2016 02:25:02 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 204
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeStore/accounts/datalake013985?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc5MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDEzOTg1P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5924?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazU5MjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"datalake013985\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "60"
- ],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "31"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
- ],
- "x-ms-client-request-id": [
- "d6b6f91f-ab30-4201-9bc9-42f6522846fd"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeStore/accounts/datalake013985\",\r\n \"name\": \"datalake013985\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924\",\r\n \"name\": \"onesdk5924\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "364"
+ "174"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -238,23 +222,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/af786cc4-e978-48d5-bcb4-e2ca7480ca080?api-version=2015-10-01-preview&expanded=true"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
],
"x-ms-request-id": [
- "1d0c3ad9-05d7-4967-8921-ed4831c1b385"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1143"
+ "c0d783d0-c379-48eb-b5fa-156eaa100cb3"
],
"x-ms-correlation-request-id": [
- "9128cf46-d34b-4b90-897e-092df790e806"
+ "c0d783d0-c379-48eb-b5fa-156eaa100cb3"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220844Z:9128cf46-d34b-4b90-897e-092df790e806"
+ "WESTUS:20160226T022350Z:c0d783d0-c379-48eb-b5fa-156eaa100cb3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -263,43 +241,28 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:08:44 GMT"
- ],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourcegroups/abarg17913/providers/Microsoft.DataLakeStore/accounts/datalake013985/operationresults/0?api-version=2015-10-01-preview"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:23:49 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/af786cc4-e978-48d5-bcb4-e2ca7480ca080?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2FmNzg2Y2M0LWU5NzgtNDhkNS1iY2I0LWUyY2E3NDgwY2EwODA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "12"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -307,17 +270,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "911194d7-b18d-40f5-abc9-5feb5345dd6e"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14771"
+ "14991"
+ ],
+ "x-ms-request-id": [
+ "1482f1fe-a118-47b0-aa3b-9b3e1bf14e15"
],
"x-ms-correlation-request-id": [
- "0618a071-375b-48bd-b73b-7b248766da68"
+ "1482f1fe-a118-47b0-aa3b-9b3e1bf14e15"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220845Z:0618a071-375b-48bd-b73b-7b248766da68"
+ "WESTUS:20160226T022350Z:1482f1fe-a118-47b0-aa3b-9b3e1bf14e15"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -326,40 +289,34 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:08:44 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:23:49 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/af786cc4-e978-48d5-bcb4-e2ca7480ca080?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2FmNzg2Y2M0LWU5NzgtNDhkNS1iY2I0LWUyY2E3NDgwY2EwODA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeStore/accounts/onesdk8110?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazgxMTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "d8298ce0-11bf-4d8d-b64e-800139bd1938"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk8110' under resource group 'onesdk5924' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "157"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -367,17 +324,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "d909130b-189b-40da-8dab-ce1b4a6937b9"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14768"
+ "x-ms-request-id": [
+ "6708a480-a50e-426d-a9b4-42f121b40887"
],
"x-ms-correlation-request-id": [
- "d4b643d8-4a27-4a3b-9ee5-62dbfd649186"
+ "6708a480-a50e-426d-a9b4-42f121b40887"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220855Z:d4b643d8-4a27-4a3b-9ee5-62dbfd649186"
+ "WESTUS:20160226T022350Z:6708a480-a50e-426d-a9b4-42f121b40887"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -386,40 +343,34 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:08:54 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:23:49 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/af786cc4-e978-48d5-bcb4-e2ca7480ca080?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2FmNzg2Y2M0LWU5NzgtNDhkNS1iY2I0LWUyY2E3NDgwY2EwODA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeStore/accounts/onesdk8110?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazgxMTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "fe9fc098-0d1d-4bff-8e06-009d028e8675"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk8110' under resource group 'onesdk5924' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "157"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -427,17 +378,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "d3387c9f-a832-4bef-88de-2d13cf04ba6d"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14767"
+ "x-ms-request-id": [
+ "b7789100-bd61-4e0f-8fac-afaba6d925be"
],
"x-ms-correlation-request-id": [
- "a78ede6b-a6af-4f42-a1a8-eb3d8ef1aee6"
+ "b7789100-bd61-4e0f-8fac-afaba6d925be"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220910Z:a78ede6b-a6af-4f42-a1a8-eb3d8ef1aee6"
+ "WESTUS:20160226T022350Z:b7789100-bd61-4e0f-8fac-afaba6d925be"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -446,37 +397,25 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:09:10 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:23:49 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/af786cc4-e978-48d5-bcb4-e2ca7480ca080?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2FmNzg2Y2M0LWU5NzgtNDhkNS1iY2I0LWUyY2E3NDgwY2EwODA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeStore/accounts/onesdk8110?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazgxMTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8110.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:23:54.4250007Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:23:54.4250007Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeStore/accounts/onesdk8110\",\r\n \"name\": \"onesdk8110\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "22"
+ "488"
],
"Content-Type": [
"application/json"
@@ -488,16 +427,16 @@
"no-cache"
],
"x-ms-request-id": [
- "b1e708be-e802-4295-9bd0-70ebff83e6b0"
+ "e30fc2a3-2aae-4e85-8afd-41bbeab8ee93"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14766"
+ "14963"
],
"x-ms-correlation-request-id": [
- "7301cca8-0acc-417a-8231-71ffa9ab2b9d"
+ "ef32ec16-c636-43b3-a289-a50c356072ba"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220925Z:7301cca8-0acc-417a-8231-71ffa9ab2b9d"
+ "WESTUS:20160226T022423Z:ef32ec16-c636-43b3-a289-a50c356072ba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -506,7 +445,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:09:25 GMT"
+ "Fri, 26 Feb 2016 02:24:22 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -521,26 +460,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeStore/accounts/datalake013985?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc5MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDEzOTg1P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeStore/accounts/onesdk8110?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazgxMTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "x-ms-client-request-id": [
+ "b046e0ca-8560-4403-bd2a-cb2a1d5ac6f2"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"datalake013985.caboaccountdogfood.net\",\r\n \"creationTime\": \"2015-12-11T22:08:48.4757413Z\",\r\n \"lastModifiedTime\": \"2015-12-11T22:08:48.4757413Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeStore/accounts/datalake013985\",\r\n \"name\": \"datalake013985\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk8110.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:23:54.4250007Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:23:54.4250007Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeStore/accounts/onesdk8110\",\r\n \"name\": \"onesdk8110\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "502"
+ "488"
],
"Content-Type": [
"application/json"
@@ -552,16 +490,16 @@
"no-cache"
],
"x-ms-request-id": [
- "51489f4f-1c10-4f21-86c3-5701603fb3bb"
+ "917460cb-af20-4fc7-9246-68ab9d0981c4"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14765"
+ "14962"
],
"x-ms-correlation-request-id": [
- "2d7227dc-7a8c-4c0d-812e-c7889b932d69"
+ "6f4b6e4a-f54f-46d8-8c39-318f36cf9847"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220926Z:2d7227dc-7a8c-4c0d-812e-c7889b932d69"
+ "WESTUS:20160226T022500Z:6f4b6e4a-f54f-46d8-8c39-318f36cf9847"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -570,7 +508,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:09:25 GMT"
+ "Fri, 26 Feb 2016 02:25:00 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -585,35 +523,31 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeStore/accounts/datalake027614?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc5MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDI3NjE0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeStore/accounts/onesdk8110?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazgxMTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"datalake027614\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"onesdk8110\",\r\n \"tags\": {},\r\n \"properties\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "60"
+ "92"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "x-ms-client-request-id": [
+ "0d5e21ba-1d8b-47fe-97bc-5a7c5bf53a8b"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
+ "accept-language": [
+ "en-US"
],
- "x-ms-client-request-id": [
- "e6deaeb2-4753-48fc-8223-d4b3ac0654d5"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeStore/accounts/datalake027614\",\r\n \"name\": \"datalake027614\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeStore/accounts/onesdk8110\",\r\n \"name\": \"onesdk8110\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "364"
+ "354"
],
"Content-Type": [
"application/json"
@@ -628,19 +562,19 @@
"10"
],
"Azure-AsyncOperation": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2356fa6f-d7e6-4554-9016-e331d4e2aaef0?api-version=2015-10-01-preview&expanded=true"
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3fa22182-d019-4c88-9d6a-346c16bfdce00?api-version=2015-10-01-preview&expanded=true"
],
"x-ms-request-id": [
- "f2f682b4-bc18-4738-ae94-b6c83e1a746c"
+ "84d243d9-6ec2-4f00-a308-2e390191b450"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1142"
+ "1188"
],
"x-ms-correlation-request-id": [
- "48e34a35-7e01-4148-8840-785742a3767c"
+ "66f23cfa-c3c7-48f7-825a-dc73f8810e07"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220926Z:48e34a35-7e01-4148-8840-785742a3767c"
+ "WESTUS:20160226T022352Z:66f23cfa-c3c7-48f7-825a-dc73f8810e07"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -649,10 +583,10 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:09:26 GMT"
+ "Fri, 26 Feb 2016 02:23:51 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourcegroups/abarg17913/providers/Microsoft.DataLakeStore/accounts/datalake027614/operationresults/0?api-version=2015-10-01-preview"
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5924/providers/Microsoft.DataLakeStore/accounts/onesdk8110/operationresults/0?api-version=2015-10-01-preview"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -667,22 +601,19 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2356fa6f-d7e6-4554-9016-e331d4e2aaef0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzIzNTZmYTZmLWQ3ZTYtNDU1NC05MDE2LWUzMzFkNGUyYWFlZjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3fa22182-d019-4c88-9d6a-346c16bfdce00?api-version=2015-10-01-preview&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzNmYTIyMTgyLWQwMTktNGM4OC05ZDZhLTM0NmMxNmJmZGNlMDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.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"
@@ -694,16 +625,16 @@
"no-cache"
],
"x-ms-request-id": [
- "30425aee-f8b8-4eca-9d2f-713ea0d1431d"
+ "a0c70358-c0ab-4052-ad12-a69f4d5fab30"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14764"
+ "14964"
],
"x-ms-correlation-request-id": [
- "28c53f51-f8ae-4b61-a9af-0410a85b52fb"
+ "5be469ca-db0e-49fe-8857-53db229fcf53"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220926Z:28c53f51-f8ae-4b61-a9af-0410a85b52fb"
+ "WESTUS:20160226T022422Z:5be469ca-db0e-49fe-8857-53db229fcf53"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -712,7 +643,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:09:26 GMT"
+ "Fri, 26 Feb 2016 02:24:22 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -727,25 +658,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2356fa6f-d7e6-4554-9016-e331d4e2aaef0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzIzNTZmYTZmLWQ3ZTYtNDU1NC05MDE2LWUzMzFkNGUyYWFlZjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2340?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGsyMzQwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "cf9ca576-d40d-4ed3-8699-5de11e2e31d3"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.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/onesdk2340' under resource group 'onesdk5924' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "161"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -753,17 +687,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "6e7994bd-a365-4889-aa66-5a061703dee9"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14762"
+ "x-ms-request-id": [
+ "8ee2f359-de2d-4e18-b0c7-b4fe41cfc837"
],
"x-ms-correlation-request-id": [
- "5c0506df-ce2a-4644-bd5d-e8fb3a217f8d"
+ "8ee2f359-de2d-4e18-b0c7-b4fe41cfc837"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220937Z:5c0506df-ce2a-4644-bd5d-e8fb3a217f8d"
+ "WESTUS:20160226T022423Z:8ee2f359-de2d-4e18-b0c7-b4fe41cfc837"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -772,40 +706,34 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:09:36 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:24:23 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2356fa6f-d7e6-4554-9016-e331d4e2aaef0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzIzNTZmYTZmLWQ3ZTYtNDU1NC05MDE2LWUzMzFkNGUyYWFlZjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2340?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGsyMzQwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "b577f207-4f9e-4bf6-8923-5d4865349d2b"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.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/onesdk2340' under resource group 'onesdk5924' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "161"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -813,17 +741,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "83644afd-5a8c-49b8-95ea-59f70cb9ebab"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14761"
+ "x-ms-request-id": [
+ "0e863078-625a-4513-8dda-b96374e5d790"
],
"x-ms-correlation-request-id": [
- "8fe7822e-f7fa-42f6-94c5-cb273e8177fd"
+ "0e863078-625a-4513-8dda-b96374e5d790"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T220955Z:8fe7822e-f7fa-42f6-94c5-cb273e8177fd"
+ "WESTUS:20160226T022423Z:0e863078-625a-4513-8dda-b96374e5d790"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -832,37 +760,25 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:09:54 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:24:23 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2356fa6f-d7e6-4554-9016-e331d4e2aaef0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzIzNTZmYTZmLWQ3ZTYtNDU1NC05MDE2LWUzMzFkNGUyYWFlZjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2340?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGsyMzQwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk8110\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk8110\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk2340.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:24:25.5749198Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:24:25.5749198Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2340\",\r\n \"name\": \"onesdk2340\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "22"
+ "659"
],
"Content-Type": [
"application/json"
@@ -874,16 +790,16 @@
"no-cache"
],
"x-ms-request-id": [
- "5cf566a7-f10b-43da-82ff-c35ee64133d4"
+ "13ff26d8-bda4-4ac5-8f09-cd84e867380a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14765"
+ "14976"
],
"x-ms-correlation-request-id": [
- "eb95145a-8f45-4478-9ec3-1ac0c2094eaa"
+ "4f67e9bf-8bbf-4256-ae2e-6dd4a6d5a9af"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221010Z:eb95145a-8f45-4478-9ec3-1ac0c2094eaa"
+ "WESTUS:20160226T022456Z:4f67e9bf-8bbf-4256-ae2e-6dd4a6d5a9af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -892,7 +808,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:10:10 GMT"
+ "Fri, 26 Feb 2016 02:24:55 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -907,26 +823,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeStore/accounts/datalake027614?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc5MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL2RhdGFsYWtlMDI3NjE0P2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2340?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGsyMzQwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview"
+ "x-ms-client-request-id": [
+ "a93145e9-6a50-44fa-998e-2c7dac914ef9"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"datalake027614.caboaccountdogfood.net\",\r\n \"creationTime\": \"2015-12-11T22:09:29.8439244Z\",\r\n \"lastModifiedTime\": \"2015-12-11T22:09:29.8439244Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeStore/accounts/datalake027614\",\r\n \"name\": \"datalake027614\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk8110\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk8110\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk2340.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:24:25.5749198Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:24:25.5749198Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2340\",\r\n \"name\": \"onesdk2340\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "502"
+ "659"
],
"Content-Type": [
"application/json"
@@ -938,16 +853,16 @@
"no-cache"
],
"x-ms-request-id": [
- "233838dd-73ac-4a89-ac19-ada9ef26172c"
+ "838a9b11-ad8e-4456-9f20-d183a95bb303"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14764"
+ "14975"
],
"x-ms-correlation-request-id": [
- "4cc9ac63-a1ec-4959-98d9-4f768da2981d"
+ "2b31e06c-76a6-4502-b5ba-cc988866cc4f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221010Z:4cc9ac63-a1ec-4959-98d9-4f768da2981d"
+ "WESTUS:20160226T022456Z:2b31e06c-76a6-4502-b5ba-cc988866cc4f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -956,7 +871,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:10:10 GMT"
+ "Fri, 26 Feb 2016 02:24:55 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -971,32 +886,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeAnalytics/accounts/testaba16004?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc5MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTYwMDQ/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2340?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGsyMzQwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "1289277a-f672-4ba9-b062-92f6ed0f2285"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba16004' under resource group 'abarg17913' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk8110\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"onesdk8110\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk2340.azuredatalakeanalytics.net\",\r\n \"creationTime\": \"2016-02-26T02:24:25.5749198Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:24:25.5749198Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2340\",\r\n \"name\": \"onesdk2340\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "163"
+ "659"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -1004,17 +915,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
- ],
"x-ms-request-id": [
- "843268f1-46bb-4971-b022-97c6920498d8"
+ "5018df0d-171c-432e-ae64-25a4b3d554c6"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
],
"x-ms-correlation-request-id": [
- "843268f1-46bb-4971-b022-97c6920498d8"
+ "39802d5e-267d-44c1-91e0-4591b0e6e5a0"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221016Z:843268f1-46bb-4971-b022-97c6920498d8"
+ "WESTUS:20160226T022457Z:39802d5e-267d-44c1-91e0-4591b0e6e5a0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1023,35 +934,40 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:10:15 GMT"
+ "Fri, 26 Feb 2016 02:24:57 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeAnalytics/accounts/testaba16004?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc5MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTYwMDQ/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2340?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGsyMzQwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "a1163544-84a6-4b1b-9fb9-842ccc7da2c7"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba16004' under resource group 'abarg17913' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/onesdk2340' under resource group 'onesdk5924' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "163"
+ "161"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1066,13 +982,13 @@
"gateway"
],
"x-ms-request-id": [
- "c454a17b-0469-4637-aec8-eab369d53384"
+ "729ea52a-a1fc-463e-bc77-229712d11170"
],
"x-ms-correlation-request-id": [
- "c454a17b-0469-4637-aec8-eab369d53384"
+ "729ea52a-a1fc-463e-bc77-229712d11170"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221016Z:c454a17b-0469-4637-aec8-eab369d53384"
+ "WESTUS:20160226T022500Z:729ea52a-a1fc-463e-bc77-229712d11170"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1081,38 +997,34 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:10:15 GMT"
+ "Fri, 26 Feb 2016 02:24:59 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeAnalytics/accounts/testaba16004?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc5MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTYwMDQ/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2340?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGsyMzQwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "c6c3aff1-bfa4-4a89-8a12-40aabd2e21fd"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake013985\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"datalake013985\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba16004.konaaccountdogfood.net\",\r\n \"creationTime\": \"2015-12-11T22:10:17.3279556Z\",\r\n \"lastModifiedTime\": \"2015-12-11T22:10:17.3279556Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeAnalytics/accounts/testaba16004\",\r\n \"name\": \"testaba16004\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/onesdk2340' under resource group 'onesdk5924' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "669"
+ "161"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1120,17 +1032,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "336cffbb-5ebb-4b1b-9f66-e2f0718c1897"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14819"
+ "x-ms-request-id": [
+ "c8a9daa6-deb6-46fc-90a9-356475e6bdc4"
],
"x-ms-correlation-request-id": [
- "479746da-d586-4e19-8166-0a49751532be"
+ "c8a9daa6-deb6-46fc-90a9-356475e6bdc4"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221057Z:479746da-d586-4e19-8166-0a49751532be"
+ "WESTUS:20160226T022500Z:c8a9daa6-deb6-46fc-90a9-356475e6bdc4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1139,44 +1051,37 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:10:57 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:25:00 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeAnalytics/accounts/testaba16004?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc5MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTYwMDQ/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2340?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGsyMzQwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"onesdk2340\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk8110\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"onesdk8110\"\r\n }\r\n ]\r\n }\r\n}",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "233"
+ ],
+ "x-ms-client-request-id": [
+ "86f8d98a-2858-4655-8084-c37691e78719"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake013985\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"datalake013985\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba16004.konaaccountdogfood.net\",\r\n \"creationTime\": \"2015-12-11T22:10:17.3279556Z\",\r\n \"lastModifiedTime\": \"2015-12-11T22:10:17.3279556Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeAnalytics/accounts/testaba16004\",\r\n \"name\": \"testaba16004\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"onesdk8110\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"onesdk8110\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2340\",\r\n \"name\": \"onesdk2340\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "669"
+ "453"
],
"Content-Type": [
"application/json"
@@ -1187,17 +1092,23 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b630c2a6-16d2-4c91-b471-0740d2e5b31e0?api-version=2015-10-01-preview&expanded=true"
+ ],
"x-ms-request-id": [
- "e05876d2-65f2-4310-a1a1-64e3c4208649"
+ "50e646fe-a22b-48ee-999b-664c4dc35465"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14818"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
],
"x-ms-correlation-request-id": [
- "8d952682-82a5-409f-99cc-182eb45d2bb1"
+ "9923978f-dab3-4041-ab74-18df8490ea05"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221058Z:8d952682-82a5-409f-99cc-182eb45d2bb1"
+ "WESTUS:20160226T022425Z:9923978f-dab3-4041-ab74-18df8490ea05"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1206,7 +1117,10 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:10:57 GMT"
+ "Fri, 26 Feb 2016 02:24:24 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5924/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2340/operationresults/0?api-version=2015-10-01-preview"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1218,32 +1132,22 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeAnalytics/accounts/testaba16004?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc5MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTYwMDQ/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b630c2a6-16d2-4c91-b471-0740d2e5b31e0?api-version=2015-10-01-preview&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iNjMwYzJhNi0xNmQyLTRjOTEtYjQ3MS0wNzQwZDJlNWIzMWUwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake013985\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"datalake013985\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 20,\r\n \"maxJobCount\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba16004.konaaccountdogfood.net\",\r\n \"creationTime\": \"2015-12-11T22:10:17.3279556Z\",\r\n \"lastModifiedTime\": \"2015-12-11T22:10:17.3279556Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeAnalytics/accounts/testaba16004\",\r\n \"name\": \"testaba16004\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "669"
+ "22"
],
"Content-Type": [
"application/json"
@@ -1255,16 +1159,16 @@
"no-cache"
],
"x-ms-request-id": [
- "189cf90a-c962-4adb-93cd-a3ddebb9792e"
+ "99f869f6-6649-462a-abcc-1b22a63b4f1c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14817"
+ "14977"
],
"x-ms-correlation-request-id": [
- "0f8305bb-40e7-49a7-8fb5-8be6a4cf53eb"
+ "8386db37-2265-49d1-a377-8f32137c2cb1"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221059Z:0f8305bb-40e7-49a7-8fb5-8be6a4cf53eb"
+ "WESTUS:20160226T022455Z:8386db37-2265-49d1-a377-8f32137c2cb1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1273,7 +1177,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:10:58 GMT"
+ "Fri, 26 Feb 2016 02:24:55 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1288,30 +1192,26 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeAnalytics/accounts/testaba16004?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc5MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTYwMDQ/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/Jobs?$filter=submitTime%20ge%20datetimeoffset'2016-02-25T18:24:56.7517385-08:00'&api-version=2015-11-01-preview",
+ "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwZ2UlMjBkYXRldGltZW9mZnNldCcyMDE2LTAyLTI1VDE4OjI0OjU2Ljc1MTczODUtMDg6MDAnJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "00d1de45-db6c-466b-a185-770199f171aa"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba16004' under resource group 'abarg17913' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null,\r\n \"count\": null\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "163"
- ],
"Content-Type": [
"application/json; charset=utf-8"
],
@@ -1321,59 +1221,47 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "Transfer-Encoding": [
+ "chunked"
],
"x-ms-request-id": [
- "11134569-fb16-4052-904b-0f168358390a"
- ],
- "x-ms-correlation-request-id": [
- "11134569-fb16-4052-904b-0f168358390a"
+ "f50b5757-0227-4f74-b273-299d9b9e642a"
],
- "x-ms-routing-request-id": [
- "CENTRALUS:20151211T221100Z:11134569-fb16-4052-904b-0f168358390a"
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "max-age=15724800; includeSubDomains"
],
"Cache-Control": [
- "no-cache"
+ "private"
],
"Date": [
- "Fri, 11 Dec 2015 22:11:00 GMT"
+ "Fri, 26 Feb 2016 02:24:57 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeAnalytics/accounts/testaba16004?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc5MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTYwMDQ/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"testaba16004\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake013985\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"datalake013985\"\r\n }\r\n ],\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeAnalytics/accounts/onesdk2340?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9vbmVzZGsyMzQwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "335"
- ],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
- ],
"x-ms-client-request-id": [
- "64c2b807-e2d6-4518-9c50-74e1a07070a0"
+ "ef0ff8e7-0663-49e0-8eee-963012465bde"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"datalake013985\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"datalake013985\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeAnalytics/accounts/testaba16004\",\r\n \"name\": \"testaba16004\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "499"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -1381,23 +1269,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/196a3fe9-8921-4d25-997a-c4af62ab53840?api-version=2015-10-01-preview&expanded=true"
- ],
"x-ms-request-id": [
- "1a6f45d1-74d1-4e76-bf0d-995916ffc2cf"
+ "37d6992b-8982-44c3-8bd9-51bf7bd3318f"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1153"
+ "1193"
],
"x-ms-correlation-request-id": [
- "870ee319-6fff-47ed-b6cc-79293375a3bf"
+ "d105860d-b93f-4ea4-b031-c9706c457fbd"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221016Z:870ee319-6fff-47ed-b6cc-79293375a3bf"
+ "WESTUS:20160226T022500Z:d105860d-b93f-4ea4-b031-c9706c457fbd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1406,10 +1288,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:10:16 GMT"
- ],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourcegroups/abarg17913/providers/Microsoft.DataLakeAnalytics/accounts/testaba16004/operationresults/0?api-version=2015-10-01-preview"
+ "Fri, 26 Feb 2016 02:24:59 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1421,28 +1300,28 @@
"ASP.NET"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/196a3fe9-8921-4d25-997a-c4af62ab53840?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8xOTZhM2ZlOS04OTIxLTRkMjUtOTk3YS1jNGFmNjJhYjUzODQwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5924/providers/Microsoft.DataLakeStore/accounts/onesdk8110?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU5MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazgxMTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "1850a427-132d-4df3-8f5c-300c9a185acb"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -1451,16 +1330,16 @@
"no-cache"
],
"x-ms-request-id": [
- "2f01cff6-3916-4093-bfee-5ff15a4f65d2"
+ "8c7bee4e-9321-4412-b6b4-821cbb647f54"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14823"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1187"
],
"x-ms-correlation-request-id": [
- "cbfd8a12-3e9d-437b-abab-7796e8bd7a17"
+ "6bb48bc6-ef98-4ab6-af1e-b41b3a78ee6d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221017Z:cbfd8a12-3e9d-437b-abab-7796e8bd7a17"
+ "WESTUS:20160226T022502Z:6bb48bc6-ef98-4ab6-af1e-b41b3a78ee6d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1469,7 +1348,7 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:10:16 GMT"
+ "Fri, 26 Feb 2016 02:25:02 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1484,25 +1363,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/196a3fe9-8921-4d25-997a-c4af62ab53840?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8xOTZhM2ZlOS04OTIxLTRkMjUtOTk3YS1jNGFmNjJhYjUzODQwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5924?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazU5MjQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -1510,17 +1383,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "43a3c828-9b16-4f67-95c8-04422837ad08"
+ "Retry-After": [
+ "15"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14822"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1193"
+ ],
+ "x-ms-request-id": [
+ "580740aa-2650-45e2-a84d-277795fb6b74"
],
"x-ms-correlation-request-id": [
- "ba43ef1d-04cd-4a48-8aa5-1c06ebfa27d9"
+ "580740aa-2650-45e2-a84d-277795fb6b74"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221027Z:ba43ef1d-04cd-4a48-8aa5-1c06ebfa27d9"
+ "WESTUS:20160226T022504Z:580740aa-2650-45e2-a84d-277795fb6b74"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1529,40 +1405,31 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:10:26 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
+ "Fri, 26 Feb 2016 02:25:04 GMT"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1OTI0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/196a3fe9-8921-4d25-997a-c4af62ab53840?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8xOTZhM2ZlOS04OTIxLTRkMjUtOTk3YS1jNGFmNjJhYjUzODQwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1OTI0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPVEkwTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-version": [
- "2015-10-01-preview"
+ "2014-04-01-preview"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -1570,17 +1437,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "ba5008d8-7ea4-40fe-8039-74cb32e0a3c8"
+ "Retry-After": [
+ "15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14821"
+ "14989"
+ ],
+ "x-ms-request-id": [
+ "bd0d63d8-45bd-48bc-86bc-11883d09bf77"
],
"x-ms-correlation-request-id": [
- "956c93d2-1f48-49b2-b258-c78df735259c"
+ "bd0d63d8-45bd-48bc-86bc-11883d09bf77"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221042Z:956c93d2-1f48-49b2-b258-c78df735259c"
+ "WESTUS:20160226T022504Z:bd0d63d8-45bd-48bc-86bc-11883d09bf77"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1589,40 +1459,31 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:10:42 GMT"
+ "Fri, 26 Feb 2016 02:25:04 GMT"
],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1OTI0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/196a3fe9-8921-4d25-997a-c4af62ab53840?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8xOTZhM2ZlOS04OTIxLTRkMjUtOTk3YS1jNGFmNjJhYjUzODQwP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldyZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1OTI0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPVEkwTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-version": [
- "2015-10-01-preview"
+ "2014-04-01-preview"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "22"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -1630,17 +1491,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "fea9ca39-879a-47b7-ac08-425d2efb9c5e"
+ "Retry-After": [
+ "15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14820"
+ "14988"
+ ],
+ "x-ms-request-id": [
+ "59bf8f5d-72e4-467e-858c-df284d5f6d6b"
],
"x-ms-correlation-request-id": [
- "16ba09bf-e224-440c-90fc-73a4cc690481"
+ "59bf8f5d-72e4-467e-858c-df284d5f6d6b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221057Z:16ba09bf-e224-440c-90fc-73a4cc690481"
+ "WESTUS:20160226T022519Z:59bf8f5d-72e4-467e-858c-df284d5f6d6b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1649,50 +1513,31 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:10:57 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
+ "Fri, 26 Feb 2016 02:25:18 GMT"
],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1OTI0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/Jobs?$filter=submitTime%20ge%20datetimeoffset'2015-12-11T14:10:58.5384589-08:00'&api-version=2015-11-01-preview",
- "EncodedRequestUri": "L0pvYnM/JGZpbHRlcj1zdWJtaXRUaW1lJTIwZ2UlMjBkYXRldGltZW9mZnNldCUyNzIwMTUtMTItMTFUMTQlM0ExMCUzQTU4LjUzODQ1ODktMDglM0EwMCUyNyZhcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1OTI0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPVEkwTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.AnalyticsJob 0.9.6-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.AnalyticsJob",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-resource-group-name": [
- "abarg17913"
- ],
- "x-ms-client-subscription-id": [
- "0353d26d-e338-469a-a87a-bd3507471155"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null,\r\n \"count\": null\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
@@ -1700,45 +1545,47 @@
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14987"
],
"x-ms-request-id": [
- "619960c4-f089-490a-8625-38ea26e575d0"
+ "f90cfb00-e8c0-43ec-9b20-a615a9f5b737"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "f90cfb00-e8c0-43ec-9b20-a615a9f5b737"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T022535Z:f90cfb00-e8c0-43ec-9b20-a615a9f5b737"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
- "private"
+ "no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:10:58 GMT"
+ "Fri, 26 Feb 2016 02:25:34 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1OTI0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/0353d26d-e338-469a-a87a-bd3507471155/resourceGroups/abarg17913/providers/Microsoft.DataLakeAnalytics/accounts/testaba16004?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDM1M2QyNmQtZTMzOC00NjlhLWE4N2EtYmQzNTA3NDcxMTU1L3Jlc291cmNlR3JvdXBzL2FiYXJnMTc5MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTYwMDQ/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1OTI0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPVEkwTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Analytics 0.9.4-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Analytics",
- "0.9.4-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
"ResponseBody": "",
@@ -1752,17 +1599,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "5c6657fc-0121-477e-a5ea-82af0064d3fe"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14986"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1152"
+ "x-ms-request-id": [
+ "fb4c2bd0-ef11-43ab-a684-b6e8fd787513"
],
"x-ms-correlation-request-id": [
- "9f7bb86b-5c92-4557-80e9-b0d8fac5f938"
+ "fb4c2bd0-ef11-43ab-a684-b6e8fd787513"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20151211T221100Z:9f7bb86b-5c92-4557-80e9-b0d8fac5f938"
+ "WESTUS:20160226T022550Z:fb4c2bd0-ef11-43ab-a684-b6e8fd787513"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1771,23 +1618,20 @@
"no-cache"
],
"Date": [
- "Fri, 11 Dec 2015 22:11:00 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:25:50 GMT"
]
},
"StatusCode": 200
}
],
- "Names": {},
+ "Names": {
+ "": [
+ "onesdk5924",
+ "onesdk2340",
+ "onesdk8110"
+ ]
+ },
"Variables": {
- "SubscriptionId": "0353d26d-e338-469a-a87a-bd3507471155"
+ "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/packages.config b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/packages.config
index 4bd26af66c7c..1fa7fdc5239b 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/packages.config
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics.Test/packages.config
@@ -3,21 +3,23 @@
-
-
-
-
+
+
+
+
-
+
+
+
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands.DataLakeAnalytics.csproj b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands.DataLakeAnalytics.csproj
index 2309bb7b38df..0c68ae0966a5 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands.DataLakeAnalytics.csproj
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands.DataLakeAnalytics.csproj
@@ -45,17 +45,10 @@
..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll
-
+
False
- ..\..\..\packages\Microsoft.Azure.Management.DataLake.Analytics.0.9.4-preview\lib\net40\Microsoft.Azure.Management.DataLake.Analytics.dll
-
-
- False
- ..\..\..\packages\Microsoft.Azure.Management.DataLake.AnalyticsCatalog.0.9.3-preview\lib\net40\Microsoft.Azure.Management.DataLake.AnalyticsCatalog.dll
-
-
- False
- ..\..\..\packages\Microsoft.Azure.Management.DataLake.AnalyticsJob.0.9.6-preview\lib\net40\Microsoft.Azure.Management.DataLake.AnalyticsJob.dll
+ ..\..\..\packages\Microsoft.Azure.Management.DataLake.Analytics.0.10.1-preview\lib\net45\Microsoft.Azure.Management.DataLake.Analytics.dll
+ True
False
@@ -71,6 +64,11 @@
..\..\..\packages\Microsoft.Rest.ClientRuntime.2.0.1\lib\net45\Microsoft.Rest.ClientRuntime.dll
+ False
+
+
+ False
+ ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.3.0.2\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll
True
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/AddAzureRmDataLakeAnalyticsDataSource.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/AddAzureRmDataLakeAnalyticsDataSource.cs
index 92ef4b2b1f68..3eb0d1832d52 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/AddAzureRmDataLakeAnalyticsDataSource.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/AddAzureRmDataLakeAnalyticsDataSource.cs
@@ -75,7 +75,7 @@ public override void ExecuteCmdlet()
{
if (ParameterSetName.Equals(BlobParameterSetName, StringComparison.InvariantCultureIgnoreCase))
{
- var toAdd = new StorageAccount
+ var toAdd = new StorageAccountInfo
{
Name = Blob,
Properties = new StorageAccountProperties
@@ -88,9 +88,10 @@ public override void ExecuteCmdlet()
}
else
{
- var toAdd = new DataLakeStoreAccount
+ var toAdd = new DataLakeStoreAccountInfo
{
- Name = DataLakeStore
+ Name = DataLakeStore,
+ Properties = new DataLakeStoreAccountInfoProperties()
};
DataLakeAnalyticsClient.AddDataLakeStoreAccount(ResourceGroupName, Account, toAdd);
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/GetAzureRmDataLakeAnalyticsCatalogItem.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/GetAzureRmDataLakeAnalyticsCatalogItem.cs
index c1b16e52e17d..ad1014eab101 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/GetAzureRmDataLakeAnalyticsCatalogItem.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/GetAzureRmDataLakeAnalyticsCatalogItem.cs
@@ -15,7 +15,7 @@
using System.Collections.Generic;
using System.Management.Automation;
using Microsoft.Azure.Commands.DataLakeAnalytics.Models;
-using Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models;
+using Microsoft.Azure.Management.DataLake.Analytics.Models;
namespace Microsoft.Azure.Commands.DataLakeAnalytics
{
@@ -41,14 +41,9 @@ public class GetAzureDataLakeAnalyticsCatalogItem : DataLakeAnalyticsCmdletBase
[ValidateNotNullOrEmpty]
public CatalogPathInstance Path { get; set; }
- [Parameter(ValueFromPipelineByPropertyName = true, Position = 3, Mandatory = false,
- HelpMessage = "Name of resource group under which the Data Lake Analytics account and catalog exists.")]
- [ValidateNotNullOrEmpty]
- public string ResourceGroupName { get; set; }
-
public override void ExecuteCmdlet()
{
- var itemList = DataLakeAnalyticsClient.GetCatalogItem(ResourceGroupName, Account, Path, ItemType);
+ var itemList = DataLakeAnalyticsClient.GetCatalogItem(Account, Path, ItemType);
if (itemList.Count == 1)
{
WriteObject(itemList[0]);
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/GetAzureRmDataLakeAnalyticsJob.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/GetAzureRmDataLakeAnalyticsJob.cs
index 12eda6681e01..8d725da0d785 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/GetAzureRmDataLakeAnalyticsJob.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/GetAzureRmDataLakeAnalyticsJob.cs
@@ -18,8 +18,8 @@
using System.Management.Automation;
using Microsoft.Azure.Commands.DataLakeAnalytics.Models;
using Microsoft.Azure.Commands.DataLakeAnalytics.Properties;
-using Microsoft.Azure.Management.DataLake.AnalyticsJob.Models;
-using JobState = Microsoft.Azure.Management.DataLake.AnalyticsJob.Models.JobState;
+using Microsoft.Azure.Management.DataLake.Analytics.Models;
+using JobState = Microsoft.Azure.Management.DataLake.Analytics.Models.JobState;
namespace Microsoft.Azure.Commands.DataLakeAnalytics
{
@@ -86,25 +86,16 @@ public class GetAzureDataLakeAnalyticsJob : DataLakeAnalyticsCmdletBase
[ValidateNotNullOrEmpty]
public JobResult[] Result { get; set; }
- [Parameter(ParameterSetName = BaseParameterSetName, ValueFromPipelineByPropertyName = true, Position = 3,
- Mandatory = false, HelpMessage = "Name of resource group under which want to retrieve the job information.")
- ]
- [Parameter(ParameterSetName = JobInfoParameterSetName, ValueFromPipelineByPropertyName = true, Position = 7,
- Mandatory = false,
- HelpMessage = "Name of resource group under which want to to retrieve the job information.")]
- [ValidateNotNullOrEmpty]
- public string ResourceGroupName { get; set; }
-
public override void ExecuteCmdlet()
{
if (JobId != null && JobId != Guid.Empty)
{
// Get for single job
- var jobDetails = DataLakeAnalyticsClient.GetJob(ResourceGroupName, Account, JobId);
+ var jobDetails = DataLakeAnalyticsClient.GetJob(Account, JobId);
if (Include != DataLakeAnalyticsEnums.ExtendedJobData.None)
{
- if (!jobDetails.Type.Equals(JobType.USql, StringComparison.InvariantCultureIgnoreCase))
+ if (jobDetails.Type != JobType.USql)
{
WriteWarningWithTimestamp(string.Format(Resources.AdditionalDataNotSupported, jobDetails.Type));
}
@@ -113,15 +104,15 @@ public override void ExecuteCmdlet()
if (Include == DataLakeAnalyticsEnums.ExtendedJobData.All ||
Include == DataLakeAnalyticsEnums.ExtendedJobData.DebugInfo)
{
- ((USqlProperties) jobDetails.Properties).DebugData =
- DataLakeAnalyticsClient.GetDebugDataPaths(ResourceGroupName, Account, JobId);
+ ((USqlJobProperties) jobDetails.Properties).DebugData =
+ DataLakeAnalyticsClient.GetDebugDataPaths(Account, JobId);
}
if (Include == DataLakeAnalyticsEnums.ExtendedJobData.All ||
Include == DataLakeAnalyticsEnums.ExtendedJobData.Statistics)
{
- ((USqlProperties) jobDetails.Properties).Statistics =
- DataLakeAnalyticsClient.GetJobStatistics(ResourceGroupName, Account, JobId);
+ ((USqlJobProperties) jobDetails.Properties).Statistics =
+ DataLakeAnalyticsClient.GetJobStatistics(Account, JobId);
}
}
}
@@ -168,7 +159,7 @@ public override void ExecuteCmdlet()
var filterString = string.Join(" and ", filter.ToArray());
// List all accounts in given resource group if avaliable otherwise all accounts in the subscription
- var list = DataLakeAnalyticsClient.ListJobs(ResourceGroupName, Account,
+ var list = DataLakeAnalyticsClient.ListJobs(Account,
string.IsNullOrEmpty(filterString) ? null : filterString, null, null);
WriteObject(list, true);
}
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsAccount.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsAccount.cs
index 424f20904e1f..8e10559009f2 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsAccount.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsAccount.cs
@@ -13,12 +13,11 @@
// ----------------------------------------------------------------------------------
using System.Collections;
-using System.Collections.Generic;
using System.Management.Automation;
-using Hyak.Common;
using Microsoft.Azure.Commands.DataLakeAnalytics.Models;
using Microsoft.Azure.Commands.DataLakeAnalytics.Properties;
using Microsoft.Azure.Management.DataLake.Analytics.Models;
+using Microsoft.Rest.Azure;
namespace Microsoft.Azure.Commands.DataLakeAnalytics
{
@@ -65,13 +64,13 @@ public override void ExecuteCmdlet()
}
catch (CloudException ex)
{
- if (ex.Error != null && !string.IsNullOrEmpty(ex.Error.Code) && ex.Error.Code == "ResourceNotFound" ||
+ if (ex.Body != null && !string.IsNullOrEmpty(ex.Body.Code) && ex.Body.Code == "ResourceNotFound" ||
ex.Message.Contains("ResourceNotFound"))
{
// account does not exists so go ahead and create one
}
- else if (ex.Error != null && !string.IsNullOrEmpty(ex.Error.Code) &&
- ex.Error.Code == "ResourceGroupNotFound" || ex.Message.Contains("ResourceGroupNotFound"))
+ else if (ex.Body != null && !string.IsNullOrEmpty(ex.Body.Code) &&
+ ex.Body.Code == "ResourceGroupNotFound" || ex.Message.Contains("ResourceGroupNotFound"))
{
// resource group not found, let create throw error don't throw from here
}
@@ -82,7 +81,7 @@ public override void ExecuteCmdlet()
}
}
- var defaultStorage = new DataLakeStoreAccount
+ var defaultStorage = new DataLakeStoreAccountInfo
{
Name = DefaultDataLakeStore
};
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsCatalogSecret.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsCatalogSecret.cs
index 4871de6f05da..652ac6154239 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsCatalogSecret.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsCatalogSecret.cs
@@ -16,7 +16,7 @@
using System.Management.Automation;
using Microsoft.Azure.Commands.DataLakeAnalytics.Models;
using Microsoft.Azure.Commands.DataLakeAnalytics.Properties;
-using Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models;
+using Microsoft.Azure.Management.DataLake.Analytics.Models;
namespace Microsoft.Azure.Commands.DataLakeAnalytics
{
@@ -60,15 +60,6 @@ public class NewAzureDataLakeAnalyticsCatalogSecret : DataLakeAnalyticsCmdletBas
Mandatory = true, HelpMessage = "The Port associated with the host for the database to connect to.")]
public int Port { get; set; }
- [Parameter(ValueFromPipelineByPropertyName = true, ParameterSetName = BaseParameterSetName, Position = 4,
- Mandatory = false,
- HelpMessage = "Name of resource group under which the Data Lake Analytics account and catalog exists.")]
- [Parameter(ValueFromPipelineByPropertyName = true, ParameterSetName = HostAndPortParameterSetName, Position = 5,
- Mandatory = false,
- HelpMessage = "Name of resource group under which the Data Lake Analytics account and catalog exists.")]
- [ValidateNotNullOrEmpty]
- public string ResourceGroupName { get; set; }
-
public override void ExecuteCmdlet()
{
if (Uri != null && Uri.Port <= 0)
@@ -78,7 +69,7 @@ public override void ExecuteCmdlet()
var toUse = Uri ?? new Uri(string.Format("https://{0}:{1}", Host, Port));
- WriteObject(DataLakeAnalyticsClient.CreateSecret(ResourceGroupName, Account, DatabaseName, Secret.UserName,
+ WriteObject(DataLakeAnalyticsClient.CreateSecret(Account, DatabaseName, Secret.UserName,
Secret.GetNetworkCredential().Password, toUse.AbsoluteUri));
}
}
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/RemoveAzureRmDataLakeAnalyticsCatalogSecret.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/RemoveAzureRmDataLakeAnalyticsCatalogSecret.cs
index 41e9aaf91bc4..85748e27be0c 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/RemoveAzureRmDataLakeAnalyticsCatalogSecret.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/RemoveAzureRmDataLakeAnalyticsCatalogSecret.cs
@@ -38,15 +38,10 @@ public class RemoveAzureDataLakeAnalyticsSecret : DataLakeAnalyticsCmdletBase
[ValidateNotNullOrEmpty]
public string Name { get; set; }
- [Parameter(ValueFromPipelineByPropertyName = true, Position = 3, Mandatory = false,
- HelpMessage = "Name of resource group under which the Data Lake Analytics account and catalog exists.")]
- [ValidateNotNullOrEmpty]
- public string ResourceGroupName { get; set; }
-
- [Parameter(Position = 4, Mandatory = false, HelpMessage = "Do not ask for confirmation.")]
+ [Parameter(Position = 3, Mandatory = false, HelpMessage = "Do not ask for confirmation.")]
public SwitchParameter Force { get; set; }
- [Parameter(Position = 5, Mandatory = false)]
+ [Parameter(Position = 4, Mandatory = false)]
public SwitchParameter PassThru { get; set; }
public override void ExecuteCmdlet()
@@ -58,11 +53,11 @@ public override void ExecuteCmdlet()
string.Format(Resources.RemovingDataLakeAnalyticsCatalogSecret, Name),
string.Format(Resources.RemoveDataLakeAnalyticsCatalogSecret, Name),
Name,
- () => DataLakeAnalyticsClient.DeleteSecret(ResourceGroupName, Account, DatabaseName, Name));
+ () => DataLakeAnalyticsClient.DeleteSecret(Account, DatabaseName, Name));
}
else
{
- DataLakeAnalyticsClient.DeleteSecret(ResourceGroupName, Account, DatabaseName, Name);
+ DataLakeAnalyticsClient.DeleteSecret(Account, DatabaseName, Name);
}
if (PassThru)
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsAccount.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsAccount.cs
index 7f294efe2220..095f8271ca1e 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsAccount.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsAccount.cs
@@ -13,7 +13,6 @@
// ----------------------------------------------------------------------------------
using System.Collections;
-using System.Collections.Generic;
using System.Management.Automation;
using Microsoft.Azure.Commands.DataLakeAnalytics.Models;
using Microsoft.Azure.Management.DataLake.Analytics.Models;
@@ -48,10 +47,10 @@ public class SetAzureDataLakeAnalyticsAccount : DataLakeAnalyticsCmdletBase
public override void ExecuteCmdlet()
{
- DataLakeStoreAccount defaultAccount = null;
+ DataLakeStoreAccountInfo defaultAccount = null;
if (!string.IsNullOrEmpty(DefaultDataLakeStore))
{
- defaultAccount = new DataLakeStoreAccount
+ defaultAccount = new DataLakeStoreAccountInfo
{
Name = DefaultDataLakeStore
};
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsCatalogSecret.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsCatalogSecret.cs
index 85a2f5c9ba1c..cd4a7602639d 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsCatalogSecret.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsCatalogSecret.cs
@@ -16,7 +16,7 @@
using System.Management.Automation;
using Microsoft.Azure.Commands.DataLakeAnalytics.Models;
using Microsoft.Azure.Commands.DataLakeAnalytics.Properties;
-using Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models;
+using Microsoft.Azure.Management.DataLake.Analytics.Models;
namespace Microsoft.Azure.Commands.DataLakeAnalytics
{
@@ -60,15 +60,6 @@ public class SetAzureDataLakeAnalyticsCatalogSecret : DataLakeAnalyticsCmdletBas
Mandatory = true, HelpMessage = "The Port associated with the host for the database to connect to.")]
public int Port { get; set; }
- [Parameter(ValueFromPipelineByPropertyName = true, ParameterSetName = BaseParameterSetName, Position = 4,
- Mandatory = false,
- HelpMessage = "Name of resource group under which the Data Lake Analytics account and catalog exists.")]
- [Parameter(ValueFromPipelineByPropertyName = true, ParameterSetName = HostAndPortParameterSetName, Position = 5,
- Mandatory = false,
- HelpMessage = "Name of resource group under which the Data Lake Analytics account and catalog exists.")]
- [ValidateNotNullOrEmpty]
- public string ResourceGroupName { get; set; }
-
public override void ExecuteCmdlet()
{
if (Uri != null && Uri.Port <= 0)
@@ -78,7 +69,7 @@ public override void ExecuteCmdlet()
var toUse = Uri ?? new Uri(string.Format("https://{0}:{1}", Host, Port));
- WriteObject(DataLakeAnalyticsClient.UpdateSecret(ResourceGroupName, Account, DatabaseName, Secret.UserName,
+ WriteObject(DataLakeAnalyticsClient.UpdateSecret(Account, DatabaseName, Secret.UserName,
Secret.GetNetworkCredential().Password, toUse.AbsoluteUri));
}
}
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsDataSource.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsDataSource.cs
index f78417c9de88..8a77d3df9434 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsDataSource.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsDataSource.cs
@@ -76,7 +76,7 @@ public override void ExecuteCmdlet()
{
if (ParameterSetName.Equals(BlobParameterSetName, StringComparison.InvariantCultureIgnoreCase))
{
- var toAdd = new StorageAccount
+ var toAdd = new StorageAccountInfo
{
Name = Blob,
Properties = new StorageAccountProperties
@@ -89,7 +89,7 @@ public override void ExecuteCmdlet()
}
else if (Default)
{
- var toAdd = new DataLakeStoreAccount
+ var toAdd = new DataLakeStoreAccountInfo
{
Name = DataLakeStore
};
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/StopAzureRmDataLakeAnalyticsJob.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/StopAzureRmDataLakeAnalyticsJob.cs
index d6c027a7c3db..d0279b98375a 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/StopAzureRmDataLakeAnalyticsJob.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/StopAzureRmDataLakeAnalyticsJob.cs
@@ -34,16 +34,11 @@ public class StopAzureDataLakeAnalyticsJobInfo : DataLakeAnalyticsCmdletBase
public Guid JobId { get; set; }
[Parameter(ValueFromPipelineByPropertyName = true, Position = 2, Mandatory = false,
- HelpMessage = "Name of resource group under which want to stop the job.")]
- [ValidateNotNullOrEmpty]
- public string ResourceGroupName { get; set; }
-
- [Parameter(ValueFromPipelineByPropertyName = true, Position = 3, Mandatory = false,
HelpMessage = "Indicates that the job should be forcibly stopped.")]
[ValidateNotNullOrEmpty]
public SwitchParameter Force { get; set; }
- [Parameter(Position = 4, Mandatory = false)]
+ [Parameter(Position = 3, Mandatory = false)]
public SwitchParameter PassThru { get; set; }
public override void ExecuteCmdlet()
@@ -53,7 +48,7 @@ public override void ExecuteCmdlet()
string.Format(Resources.StoppingDataLakeAnalyticsJob, JobId),
string.Format(Resources.StopDataLakeAnalyticsJob, JobId),
JobId.ToString(),
- () => DataLakeAnalyticsClient.CancelJob(ResourceGroupName, Account, JobId));
+ () => DataLakeAnalyticsClient.CancelJob(Account, JobId));
if (PassThru)
{
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SubmitAzureRmDataLakeAnalyticsJob.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SubmitAzureRmDataLakeAnalyticsJob.cs
index e820d1b3fc10..a1c80acdf7bb 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SubmitAzureRmDataLakeAnalyticsJob.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SubmitAzureRmDataLakeAnalyticsJob.cs
@@ -15,10 +15,10 @@
using System;
using System.IO;
using System.Management.Automation;
-using Hyak.Common;
using Microsoft.Azure.Commands.DataLakeAnalytics.Models;
using Microsoft.Azure.Commands.DataLakeAnalytics.Properties;
-using Microsoft.Azure.Management.DataLake.AnalyticsJob.Models;
+using Microsoft.Azure.Management.DataLake.Analytics.Models;
+using Microsoft.Rest.Azure;
namespace Microsoft.Azure.Commands.DataLakeAnalytics
{
@@ -120,14 +120,13 @@ public SwitchParameter USql
[Parameter(ValueFromPipelineByPropertyName = true, ParameterSetName = USqlJobWithScriptPath, Position = 6,
Mandatory = false,
HelpMessage =
- "The degree of parallelism to use for this job. Typically, a higher degree of parallelism dedicated to a script results in faster script execution time. Valid range is between 1 and 50, inclusive."
+ "The degree of parallelism to use for this job. Typically, a higher degree of parallelism dedicated to a script results in faster script execution time."
)]
[Parameter(ValueFromPipelineByPropertyName = true, ParameterSetName = USqlJobParameterSetName, Position = 6,
Mandatory = false,
HelpMessage =
- "The degree of parallelism to use for this job. Typically, a higher degree of parallelism dedicated to a script results in faster script execution time. Valid range is between 1 and 50, inclusive."
+ "The degree of parallelism to use for this job. Typically, a higher degree of parallelism dedicated to a script results in faster script execution time."
)]
- [ValidateRange(1, 50)]
public int DegreeOfParallelism
{
get { return _degreeOfParallelism; }
@@ -151,15 +150,6 @@ public int Priority
set { _priority = value; }
}
- [Parameter(ValueFromPipelineByPropertyName = true, ParameterSetName = USqlJobWithScriptPath, Position = 8,
- Mandatory = false, HelpMessage = "Name of resource group under which the job will be submitted.")]
- // [Parameter(ValueFromPipelineByPropertyName = true, ParameterSetName = HiveJobWithScriptPath, Mandatory = false, HelpMessage = "Name of resource group under which the job will be submitted.")]
- [Parameter(ValueFromPipelineByPropertyName = true, ParameterSetName = USqlJobParameterSetName, Position = 8,
- Mandatory = false, HelpMessage = "Name of resource group under which the job will be submitted.")]
- // [Parameter(ValueFromPipelineByPropertyName = true, ParameterSetName = HiveJobParameterSetName, Mandatory = false, HelpMessage = "Name of resource group under which the job will be submitted.")]
- [ValidateNotNullOrEmpty]
- public string ResourceGroupName { get; set; }
-
public override void ExecuteCmdlet()
{
// error handling for not passing or passing both script and script path
@@ -182,14 +172,13 @@ public override void ExecuteCmdlet()
Script = File.ReadAllText(powerShellDestinationPath);
}
- string jobType;
+ JobType jobType;
JobProperties properties;
if (USql)
{
jobType = JobType.USql;
- var sqlIpProperties = new USqlProperties
+ var sqlIpProperties = new USqlJobProperties
{
- Type = jobType,
Script = Script
};
@@ -208,10 +197,9 @@ public override void ExecuteCmdlet()
else if (Hive)
{
jobType = JobType.Hive;
- properties = new HiveProperties
+ properties = new HiveJobProperties
{
- Script = Script,
- Type = jobType
+ Script = Script
};
}
else
@@ -221,7 +209,7 @@ public override void ExecuteCmdlet()
var jobInfo = new JobInformation
{
- JobId = Guid.NewGuid(),
+ JobId = Guid.NewGuid().ToString(),
Name = Name,
Properties = properties,
Type = jobType,
@@ -230,8 +218,8 @@ public override void ExecuteCmdlet()
};
WriteObject(CompileOnly
- ? DataLakeAnalyticsClient.BuildJob(ResourceGroupName, Account, jobInfo)
- : DataLakeAnalyticsClient.SubmitJob(ResourceGroupName, Account, jobInfo));
+ ? DataLakeAnalyticsClient.BuildJob(Account, jobInfo)
+ : DataLakeAnalyticsClient.SubmitJob(Account, jobInfo));
}
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/TestAzureRmDataLakeAnalyticsAccount.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/TestAzureRmDataLakeAnalyticsAccount.cs
index 4bb967618f6f..7394ff0fc884 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/TestAzureRmDataLakeAnalyticsAccount.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/TestAzureRmDataLakeAnalyticsAccount.cs
@@ -13,8 +13,6 @@
// ----------------------------------------------------------------------------------
using System.Management.Automation;
-using System.Net;
-using Hyak.Common;
using Microsoft.Azure.Commands.DataLakeAnalytics.Models;
namespace Microsoft.Azure.Commands.DataLakeAnalytics
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/TestAzureRmDataLakeAnalyticsCatalogItem.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/TestAzureRmDataLakeAnalyticsCatalogItem.cs
index c5695f2009f1..922edbe9349e 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/TestAzureRmDataLakeAnalyticsCatalogItem.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/TestAzureRmDataLakeAnalyticsCatalogItem.cs
@@ -12,10 +12,8 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using System;
using System.Management.Automation;
using Microsoft.Azure.Commands.DataLakeAnalytics.Models;
-using Microsoft.Azure.Commands.DataLakeAnalytics.Properties;
namespace Microsoft.Azure.Commands.DataLakeAnalytics
{
@@ -40,14 +38,9 @@ public class TestAzureDataLakeAnalyticsCatalogItem : DataLakeAnalyticsCmdletBase
[ValidateNotNullOrEmpty]
public CatalogPathInstance Path { get; set; }
- [Parameter(ValueFromPipelineByPropertyName = true, Position = 3, Mandatory = false,
- HelpMessage = "Name of resource group under which the Data Lake Analytics account and catalog exists.")]
- [ValidateNotNullOrEmpty]
- public string ResourceGroupName { get; set; }
-
public override void ExecuteCmdlet()
{
- WriteObject(DataLakeAnalyticsClient.TestCatalogItem(ResourceGroupName, Account, Path, ItemType));
+ WriteObject(DataLakeAnalyticsClient.TestCatalogItem(Account, Path, ItemType));
}
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/WaitAzureRmDataLakeAnalyticsJob.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/WaitAzureRmDataLakeAnalyticsJob.cs
index 1fccfbed7d3a..fdc555ed66d1 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/WaitAzureRmDataLakeAnalyticsJob.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/WaitAzureRmDataLakeAnalyticsJob.cs
@@ -15,20 +15,21 @@
using System;
using System.Management.Automation;
using System.Threading;
-using Hyak.Common;
using Microsoft.Azure.Commands.DataLakeAnalytics.Models;
using Microsoft.Azure.Commands.DataLakeAnalytics.Properties;
-using Microsoft.Azure.Management.DataLake.AnalyticsJob.Models;
-using JobState = Microsoft.Azure.Management.DataLake.AnalyticsJob.Models.JobState;
+using Microsoft.Azure.Management.DataLake.Analytics.Models;
+using Microsoft.Rest.Azure;
+using JobState = Microsoft.Azure.Management.DataLake.Analytics.Models.JobState;
+using Microsoft.WindowsAzure.Commands.Utilities.Common;
namespace Microsoft.Azure.Commands.DataLakeAnalytics
{
[Cmdlet(VerbsLifecycle.Wait, "AzureRmDataLakeAnalyticsJob"), OutputType(typeof (JobInformation))]
- public class WaitAzureDataLakeAnalyticsJobInfo : DataLakeAnalyticsCmdletBase
+ public class WaitAzureDataLakeAnalyticsJob : DataLakeAnalyticsCmdletBase
{
private int _waitIntervalInSeconds = 5;
- public WaitAzureDataLakeAnalyticsJobInfo()
+ public WaitAzureDataLakeAnalyticsJob()
{
TimeoutInSeconds = 0;
}
@@ -56,14 +57,9 @@ public int WaitIntervalInSeconds
HelpMessage = "The maximum amount of time to wait before erroring out. Default value is to never timeout.")]
public int TimeoutInSeconds { get; set; }
- [Parameter(ValueFromPipelineByPropertyName = true, Position = 4, Mandatory = false,
- HelpMessage = "Name of resource group under which want to stop the job.")]
- [ValidateNotNullOrEmpty]
- public string ResourceGroupName { get; set; }
-
public override void ExecuteCmdlet()
{
- var jobInfo = DataLakeAnalyticsClient.GetJob(ResourceGroupName, Account, JobId);
+ var jobInfo = DataLakeAnalyticsClient.GetJob(Account, JobId);
var timeWaitedInSeconds = 0;
while (jobInfo.State != JobState.Ended)
{
@@ -73,9 +69,9 @@ public override void ExecuteCmdlet()
}
WriteVerboseWithTimestamp(string.Format(Resources.WaitJobState, jobInfo.State));
- Thread.Sleep(WaitIntervalInSeconds*1000);
+ TestMockSupport.Delay(WaitIntervalInSeconds*1000);
timeWaitedInSeconds += WaitIntervalInSeconds;
- jobInfo = DataLakeAnalyticsClient.GetJob(ResourceGroupName, Account, JobId);
+ jobInfo = DataLakeAnalyticsClient.GetJob(Account, JobId);
}
WriteObject(jobInfo);
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/CatalogPathInstance.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/CatalogPathInstance.cs
index 34ce96aee920..b98b3d7ef165 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/CatalogPathInstance.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/CatalogPathInstance.cs
@@ -14,8 +14,8 @@
using System;
using System.Text.RegularExpressions;
-using Hyak.Common;
using Microsoft.Azure.Commands.DataLakeAnalytics.Properties;
+using Microsoft.Rest.Azure;
namespace Microsoft.Azure.Commands.DataLakeAnalytics.Models
{
@@ -46,7 +46,7 @@ public static CatalogPathInstance Parse(string path)
var regex =
new Regex(
- @"^(?\w+|\[[a-zA-Z_0-9.]+\])(\.(?\w+|\[[a-zA-Z_0-9.]+\]))?(\.(?\w+|\[[a-zA-Z_0-9.]+\]))?\.(?\w+|\[[a-zA-Z_0-9.]+\])$");
+ @"^(?\w+|\[.+\])(\.(?\w+|\[.+\]))?(\.(?\w+|\[.+\]))?\.(?\w+|\[.+\])$");
if (!regex.IsMatch(path))
{
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsClient.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsClient.cs
index dd7a6b59b1b6..8e47e08504e8 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsClient.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsClient.cs
@@ -17,23 +17,19 @@
using System.Collections.Generic;
using System.Linq;
using System.Net;
-using Hyak.Common;
-using Microsoft.Azure.Commands.Common.Authentication;
using Microsoft.Azure.Commands.Common.Authentication.Models;
using Microsoft.Azure.Commands.Common.Authentication.Properties;
using Microsoft.Azure.Commands.Tags.Model;
using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Azure.Management.DataLake.Analytics.Models;
-using Microsoft.Azure.Management.DataLake.AnalyticsCatalog;
-using Microsoft.Azure.Management.DataLake.AnalyticsCatalog.Models;
-using Microsoft.Azure.Management.DataLake.AnalyticsJob;
-using Microsoft.Azure.Management.DataLake.AnalyticsJob.Models;
+using Microsoft.Rest.Azure;
+using Microsoft.Rest.Azure.OData;
namespace Microsoft.Azure.Commands.DataLakeAnalytics.Models
{
public class DataLakeAnalyticsClient
{
- private readonly DataLakeAnalyticsManagementClient _accountClient;
+ private readonly DataLakeAnalyticsAccountManagementClient _accountClient;
private readonly DataLakeAnalyticsCatalogManagementClient _catalogClient;
private readonly DataLakeAnalyticsJobManagementClient _jobClient;
private readonly Guid _subscriptionId;
@@ -45,34 +41,24 @@ public DataLakeAnalyticsClient(AzureContext context)
throw new ApplicationException(Resources.InvalidDefaultSubscription);
}
- _accountClient = AzureSession.ClientFactory.CreateClient(context,
+ _accountClient = DataLakeAnalyticsCmdletBase.CreateAdlaClient(context,
AzureEnvironment.Endpoint.ResourceManager);
- _accountClient.UserAgentSuffix = " - PowerShell Client";
_subscriptionId = context.Subscription.Id;
- var creds = AzureSession.AuthenticationFactory.GetSubscriptionCloudCredentials(context);
- _jobClient = AzureSession.ClientFactory.CreateCustomClient(creds,
- context.Environment.GetEndpoint(
- AzureEnvironment.Endpoint.AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix));
- _catalogClient =
- AzureSession.ClientFactory.CreateCustomClient(creds,
- context.Environment.GetEndpoint(
- AzureEnvironment.Endpoint.AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix));
- _jobClient.UserAgentSuffix = " - PowerShell Client";
- _catalogClient.UserAgentSuffix = " - PowerShell Client";
- }
+ _jobClient = DataLakeAnalyticsCmdletBase.CreateAdlaClient(context,
+ AzureEnvironment.Endpoint.AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix, true);
- public DataLakeAnalyticsClient()
- {
+ _catalogClient = DataLakeAnalyticsCmdletBase.CreateAdlaClient(context,
+ AzureEnvironment.Endpoint.AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix, true);
}
#region Account Related Operations
public DataLakeAnalyticsAccount CreateOrUpdateAccount(string resourceGroupName, string accountName,
string location,
- DataLakeStoreAccount defaultDataLakeStoreAccount = null,
- IList additionalDataLakeStoreAccounts = null,
- IList additionalStorageAccounts = null,
+ DataLakeStoreAccountInfo defaultDataLakeStoreAccount = null,
+ IList additionalDataLakeStoreAccounts = null,
+ IList additionalStorageAccounts = null,
Hashtable[] customTags = null)
{
if (string.IsNullOrEmpty(resourceGroupName))
@@ -82,28 +68,25 @@ public DataLakeAnalyticsAccount CreateOrUpdateAccount(string resourceGroupName,
var tags = TagsConversionHelper.CreateTagDictionary(customTags, true);
- var parameters = new DataLakeAnalyticsAccountCreateOrUpdateParameters
+ var parameters = new DataLakeAnalyticsAccount
{
- DataLakeAnalyticsAccount = new DataLakeAnalyticsAccount
- {
- Name = accountName,
- Location = location,
- Tags = tags ?? new Dictionary()
- }
+ Name = accountName,
+ Location = location,
+ Tags = tags ?? new Dictionary()
};
- parameters.DataLakeAnalyticsAccount.Properties = new DataLakeAnalyticsAccountProperties();
+ parameters.Properties = new DataLakeAnalyticsAccountProperties();
if (defaultDataLakeStoreAccount != null)
{
- parameters.DataLakeAnalyticsAccount.Properties.DefaultDataLakeStoreAccount =
+ parameters.Properties.DefaultDataLakeStoreAccount =
defaultDataLakeStoreAccount.Name;
}
if (additionalStorageAccounts != null && additionalStorageAccounts.Count > 0)
{
- parameters.DataLakeAnalyticsAccount.Properties.StorageAccounts = additionalStorageAccounts;
+ parameters.Properties.StorageAccounts = additionalStorageAccounts;
}
if (additionalDataLakeStoreAccounts != null && additionalDataLakeStoreAccounts.Count > 0)
@@ -113,11 +96,11 @@ public DataLakeAnalyticsAccount CreateOrUpdateAccount(string resourceGroupName,
additionalDataLakeStoreAccounts.Add(defaultDataLakeStoreAccount);
}
- parameters.DataLakeAnalyticsAccount.Properties.DataLakeStoreAccounts = additionalDataLakeStoreAccounts;
+ parameters.Properties.DataLakeStoreAccounts = additionalDataLakeStoreAccounts;
}
else if (defaultDataLakeStoreAccount != null)
{
- parameters.DataLakeAnalyticsAccount.Properties.DataLakeStoreAccounts = new List
+ parameters.Properties.DataLakeStoreAccounts = new List
{
defaultDataLakeStoreAccount
};
@@ -137,22 +120,12 @@ public DataLakeAnalyticsAccount CreateOrUpdateAccount(string resourceGroupName,
// get the account we know it doesn't exist and we will attempt to create it fresh.
}
- var response = accountExists
- ? _accountClient.DataLakeAnalyticsAccount.Update(resourceGroupName, parameters)
- : _accountClient.DataLakeAnalyticsAccount.Create(resourceGroupName, parameters);
-
- if (response.Status != OperationStatus.Succeeded)
- {
- throw new CloudException(string.Format(Properties.Resources.LongRunningOperationFailed,
- response.Error.Code, response.Error.Message));
- }
-
- return
- _accountClient.DataLakeAnalyticsAccount.Get(resourceGroupName, parameters.DataLakeAnalyticsAccount.Name)
- .DataLakeAnalyticsAccount;
+ return accountExists
+ ? _accountClient.Account.Update(resourceGroupName, accountName, parameters)
+ : _accountClient.Account.Create(resourceGroupName, accountName, parameters);
}
- public AzureOperationResponse DeleteAccount(string resourceGroupName, string accountName)
+ public void DeleteAccount(string resourceGroupName, string accountName)
{
if (string.IsNullOrEmpty(resourceGroupName))
{
@@ -164,15 +137,7 @@ public AzureOperationResponse DeleteAccount(string resourceGroupName, string acc
throw new InvalidOperationException(string.Format(Properties.Resources.AccountDoesNotExist, accountName));
}
- var response = _accountClient.DataLakeAnalyticsAccount.Delete(resourceGroupName, accountName);
-
- if (response.Status != OperationStatus.Succeeded)
- {
- throw new CloudException(string.Format(Properties.Resources.LongRunningOperationFailed,
- response.Error.Code, response.Error.Message));
- }
-
- return response;
+ _accountClient.Account.Delete(resourceGroupName, accountName);
}
public bool TestAccount(string resourceGroupName, string accountName)
@@ -200,12 +165,12 @@ public DataLakeAnalyticsAccount GetAccount(string resourceGroupName, string acco
resourceGroupName = GetResourceGroupByAccountName(accountName);
}
- return _accountClient.DataLakeAnalyticsAccount.Get(resourceGroupName, accountName).DataLakeAnalyticsAccount;
+ return _accountClient.Account.Get(resourceGroupName, accountName);
}
public List ListAccounts(string resourceGroupName, string filter, int? top, int? skip)
{
- var parameters = new DataLakeAnalyticsAccountListParameters
+ var parameters = new ODataQuery
{
Filter = filter,
Top = top,
@@ -213,20 +178,22 @@ public List ListAccounts(string resourceGroupName, str
};
var accountList = new List();
- var response = _accountClient.DataLakeAnalyticsAccount.List(resourceGroupName, parameters);
- accountList.AddRange(response.Value);
+ var response = string.IsNullOrEmpty(resourceGroupName)
+ ? _accountClient.Account.List(parameters)
+ : _accountClient.Account.ListByResourceGroup(resourceGroupName, parameters);
+ accountList.AddRange(response);
- while (!string.IsNullOrEmpty(response.NextLink))
+ while (!string.IsNullOrEmpty(response.NextPageLink))
{
- response = ListAccountsWithNextLink(response.NextLink);
- accountList.AddRange(response.Value);
+ response = ListAccountsWithNextLink(response.NextPageLink);
+ accountList.AddRange(response);
}
return accountList;
}
public void AddDataLakeStoreAccount(string resourceGroupName, string accountName,
- DataLakeStoreAccount storageToAdd)
+ DataLakeStoreAccountInfo storageToAdd)
{
if (string.IsNullOrEmpty(resourceGroupName))
{
@@ -238,7 +205,7 @@ public void AddDataLakeStoreAccount(string resourceGroupName, string accountName
Properties = storageToAdd.Properties
};
- _accountClient.DataLakeAnalyticsAccount.AddDataLakeStoreAccount(resourceGroupName, accountName,
+ _accountClient.Account.AddDataLakeStoreAccount(resourceGroupName, accountName,
storageToAdd.Name, storageParams);
}
@@ -250,11 +217,11 @@ public void RemoveDataLakeStoreAccount(string resourceGroupName, string accountN
resourceGroupName = GetResourceGroupByAccountName(accountName);
}
- _accountClient.DataLakeAnalyticsAccount.DeleteDataLakeStoreAccount(resourceGroupName, accountName,
+ _accountClient.Account.DeleteDataLakeStoreAccount(resourceGroupName, accountName,
dataLakeStoreAccountName);
}
- public void AddStorageAccount(string resourceGroupName, string accountName, StorageAccount storageToAdd)
+ public void AddStorageAccount(string resourceGroupName, string accountName, StorageAccountInfo storageToAdd)
{
if (string.IsNullOrEmpty(resourceGroupName))
{
@@ -266,11 +233,11 @@ public void AddStorageAccount(string resourceGroupName, string accountName, Stor
Properties = storageToAdd.Properties
};
- _accountClient.DataLakeAnalyticsAccount.AddStorageAccount(resourceGroupName, accountName, storageToAdd.Name,
+ _accountClient.Account.AddStorageAccount(resourceGroupName, accountName, storageToAdd.Name,
storageParams);
}
- public void SetStorageAccount(string resourceGroupName, string accountName, StorageAccount storageToSet)
+ public void SetStorageAccount(string resourceGroupName, string accountName, StorageAccountInfo storageToSet)
{
if (string.IsNullOrEmpty(resourceGroupName))
{
@@ -282,7 +249,7 @@ public void SetStorageAccount(string resourceGroupName, string accountName, Stor
Properties = storageToSet.Properties
};
- _accountClient.DataLakeAnalyticsAccount.UpdateStorageAccount(resourceGroupName, accountName,
+ _accountClient.Account.UpdateStorageAccount(resourceGroupName, accountName,
storageToSet.Name, storageParams);
}
@@ -293,12 +260,12 @@ public void RemoveStorageAccount(string resourceGroupName, string accountName, s
resourceGroupName = GetResourceGroupByAccountName(accountName);
}
- _accountClient.DataLakeAnalyticsAccount.DeleteStorageAccount(resourceGroupName, accountName,
+ _accountClient.Account.DeleteStorageAccount(resourceGroupName, accountName,
storageAccountName);
}
public void SetDefaultDataLakeStoreAccount(string resourceGroupName, string accountName,
- DataLakeStoreAccount storageToSet)
+ DataLakeStoreAccountInfo storageToSet)
{
if (string.IsNullOrEmpty(resourceGroupName))
{
@@ -312,7 +279,7 @@ public void SetDefaultDataLakeStoreAccount(string resourceGroupName, string acco
!account.Properties.DataLakeStoreAccounts.Any(
acct => acct.Name.Equals(storageToSet.Name, StringComparison.InvariantCultureIgnoreCase)))
{
- _accountClient.DataLakeAnalyticsAccount.AddDataLakeStoreAccount(resourceGroupName, accountName,
+ _accountClient.Account.AddDataLakeStoreAccount(resourceGroupName, accountName,
storageToSet.Name, null);
}
@@ -320,85 +287,56 @@ public void SetDefaultDataLakeStoreAccount(string resourceGroupName, string acco
account.Properties.DataLakeStoreAccounts = null;
account.Properties.StorageAccounts = null;
- var updateParams = new DataLakeAnalyticsAccountCreateOrUpdateParameters
- {
- DataLakeAnalyticsAccount = account
- };
-
- _accountClient.DataLakeAnalyticsAccount.Update(resourceGroupName, updateParams);
+ _accountClient.Account.Update(resourceGroupName, accountName, account);
}
- private DataLakeAnalyticsAccountListResponse ListAccountsWithNextLink(string nextLink)
+ private IPage ListAccountsWithNextLink(string nextLink)
{
- return _accountClient.DataLakeAnalyticsAccount.ListNext(nextLink);
+ return _accountClient.Account.ListNext(nextLink);
}
#endregion
#region Catalog Operations
- public USqlSecret CreateSecret(string resourceGroupName, string accountName, string databaseName,
+ public USqlSecret CreateSecret(string accountName, string databaseName,
string secretName, string password, string hostUri)
{
- if (string.IsNullOrEmpty(resourceGroupName))
- {
- resourceGroupName = GetResourceGroupByAccountName(accountName);
- }
-
- return _catalogClient.Catalog.CreateSecret(resourceGroupName, accountName, databaseName,
+ return _catalogClient.Catalog.CreateSecret(databaseName, secretName,
new DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters
{
- SecretName = secretName,
Password = password,
Uri = hostUri
- })
- .Secret;
+ }, accountName);
}
- public USqlSecret UpdateSecret(string resourceGroupName, string accountName, string databaseName,
+ public USqlSecret UpdateSecret(string accountName, string databaseName,
string secretName, string password, string hostUri)
{
- if (string.IsNullOrEmpty(resourceGroupName))
- {
- resourceGroupName = GetResourceGroupByAccountName(accountName);
- }
-
- return _catalogClient.Catalog.UpdateSecret(accountName, resourceGroupName, databaseName,
+ return _catalogClient.Catalog.UpdateSecret(databaseName, secretName,
new DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters
{
- SecretName = secretName,
Password = password,
Uri = hostUri
- })
- .Secret;
+ }, accountName);
}
- public void DeleteSecret(string resourceGroupName, string accountName, string databaseName, string secretName)
+ public void DeleteSecret(string accountName, string databaseName, string secretName)
{
- if (string.IsNullOrEmpty(resourceGroupName))
- {
- resourceGroupName = GetResourceGroupByAccountName(accountName);
- }
-
- _catalogClient.Catalog.DeleteSecret(resourceGroupName, accountName, databaseName, secretName);
+ _catalogClient.Catalog.DeleteSecret(databaseName, secretName, accountName);
}
- public USqlSecret GetSecret(string resourceGroupName, string accountName, string databaseName, string secretName)
+ public USqlSecret GetSecret(string accountName, string databaseName, string secretName)
{
- if (string.IsNullOrEmpty(resourceGroupName))
- {
- resourceGroupName = GetResourceGroupByAccountName(accountName);
- }
-
- return _catalogClient.Catalog.GetSecret(resourceGroupName, accountName, databaseName, secretName).Secret;
+ return _catalogClient.Catalog.GetSecret(databaseName, secretName, accountName);
}
- public bool TestCatalogItem(string resourceGroupName, string accountName, CatalogPathInstance path,
+ public bool TestCatalogItem(string accountName, CatalogPathInstance path,
DataLakeAnalyticsEnums.CatalogItemType itemType)
{
try
{
- var result = GetCatalogItem(resourceGroupName, accountName, path, itemType);
+ var result = GetCatalogItem(accountName, path, itemType);
return result != null && result.Count > 0;
}
catch (CloudException ex)
@@ -412,14 +350,9 @@ public bool TestCatalogItem(string resourceGroupName, string accountName, Catalo
}
}
- public IList GetCatalogItem(string resourceGroupName, string accountName, CatalogPathInstance path,
+ public IList GetCatalogItem(string accountName, CatalogPathInstance path,
DataLakeAnalyticsEnums.CatalogItemType itemType)
{
- if (string.IsNullOrEmpty(resourceGroupName))
- {
- resourceGroupName = GetResourceGroupByAccountName(accountName);
- }
-
var isList = IsCatalogItemOrList(path, itemType);
var toReturn = new List();
@@ -428,22 +361,22 @@ public IList GetCatalogItem(string resourceGroupName, string accoun
case DataLakeAnalyticsEnums.CatalogItemType.Database:
if (isList)
{
- toReturn.AddRange(GetDatabases(resourceGroupName, accountName));
+ toReturn.AddRange(GetDatabases(accountName));
}
else
{
- toReturn.Add(GetDatabase(resourceGroupName, accountName, path.DatabaseName));
+ toReturn.Add(GetDatabase(accountName, path.DatabaseName));
}
break;
case DataLakeAnalyticsEnums.CatalogItemType.Schema:
if (isList)
{
- toReturn.AddRange(GetSchemas(resourceGroupName, accountName, path.DatabaseName));
+ toReturn.AddRange(GetSchemas(accountName, path.DatabaseName));
}
else
{
- toReturn.Add(GetSchema(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.Add(GetSchema(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName));
}
@@ -451,11 +384,11 @@ public IList GetCatalogItem(string resourceGroupName, string accoun
case DataLakeAnalyticsEnums.CatalogItemType.Assembly:
if (isList)
{
- toReturn.AddRange(GetAssemblies(resourceGroupName, accountName, path.DatabaseName));
+ toReturn.AddRange(GetAssemblies(accountName, path.DatabaseName));
}
else
{
- toReturn.Add(GetAssembly(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.Add(GetAssembly(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName));
}
@@ -463,11 +396,11 @@ public IList GetCatalogItem(string resourceGroupName, string accoun
case DataLakeAnalyticsEnums.CatalogItemType.ExternalDataSource:
if (isList)
{
- toReturn.AddRange(GetExternalDataSources(resourceGroupName, accountName, path.DatabaseName));
+ toReturn.AddRange(GetExternalDataSources(accountName, path.DatabaseName));
}
else
{
- toReturn.Add(GetExternalDataSource(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.Add(GetExternalDataSource(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName));
}
@@ -476,11 +409,11 @@ public IList GetCatalogItem(string resourceGroupName, string accoun
case DataLakeAnalyticsEnums.CatalogItemType.Credential:
if (isList)
{
- toReturn.AddRange(GetCredentials(resourceGroupName, accountName, path.DatabaseName));
+ toReturn.AddRange(GetCredentials(accountName, path.DatabaseName));
}
else
{
- toReturn.Add(GetCredential(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.Add(GetCredential(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName));
}
@@ -488,12 +421,12 @@ public IList GetCatalogItem(string resourceGroupName, string accoun
case DataLakeAnalyticsEnums.CatalogItemType.Table:
if (isList)
{
- toReturn.AddRange(GetTables(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.AddRange(GetTables(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName));
}
else
{
- toReturn.Add(GetTable(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.Add(GetTable(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName, path.TableOrTableValuedFunctionName));
}
@@ -501,12 +434,12 @@ public IList GetCatalogItem(string resourceGroupName, string accoun
case DataLakeAnalyticsEnums.CatalogItemType.TableValuedFunction:
if (isList)
{
- toReturn.AddRange(GetTableValuedFunctions(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.AddRange(GetTableValuedFunctions(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName));
}
else
{
- toReturn.Add(GetTableValuedFunction(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.Add(GetTableValuedFunction(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName, path.TableOrTableValuedFunctionName));
}
@@ -514,12 +447,12 @@ public IList GetCatalogItem(string resourceGroupName, string accoun
case DataLakeAnalyticsEnums.CatalogItemType.TableStatistics:
if (isList)
{
- toReturn.AddRange(GetTableStatistics(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.AddRange(GetTableStatistics(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName, path.TableOrTableValuedFunctionName));
}
else
{
- toReturn.Add(GetTableStatistic(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.Add(GetTableStatistic(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName, path.TableOrTableValuedFunctionName,
path.TableStatisticsName));
}
@@ -528,12 +461,12 @@ public IList GetCatalogItem(string resourceGroupName, string accoun
case DataLakeAnalyticsEnums.CatalogItemType.View:
if (isList)
{
- toReturn.AddRange(GetViews(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.AddRange(GetViews(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName));
}
else
{
- toReturn.Add(GetView(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.Add(GetView(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName, path.TableOrTableValuedFunctionName));
}
@@ -542,12 +475,12 @@ public IList GetCatalogItem(string resourceGroupName, string accoun
case DataLakeAnalyticsEnums.CatalogItemType.Procedure:
if (isList)
{
- toReturn.AddRange(GetProcedures(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.AddRange(GetProcedures(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName));
}
else
{
- toReturn.Add(GetProcedure(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.Add(GetProcedure(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName, path.TableOrTableValuedFunctionName));
}
@@ -555,7 +488,7 @@ public IList GetCatalogItem(string resourceGroupName, string accoun
case DataLakeAnalyticsEnums.CatalogItemType.Types:
if (isList)
{
- toReturn.AddRange(GetTypes(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.AddRange(GetTypes(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName));
}
else
@@ -571,7 +504,7 @@ public IList GetCatalogItem(string resourceGroupName, string accoun
}
else
{
- toReturn.Add(GetSecret(resourceGroupName, accountName, path.DatabaseName,
+ toReturn.Add(GetSecret(accountName, path.DatabaseName,
path.SchemaAssemblyOrExternalDataSourceName));
}
@@ -581,237 +514,280 @@ public IList GetCatalogItem(string resourceGroupName, string accoun
return toReturn;
}
- private USqlDatabase GetDatabase(string resourceGroupName, string accountName, string databaseName)
+ private USqlDatabase GetDatabase(string accountName, string databaseName)
{
- return _catalogClient.Catalog.GetDatabase(resourceGroupName, accountName, databaseName).Database;
+ return _catalogClient.Catalog.GetDatabase(databaseName, accountName);
}
- private IList GetDatabases(string resourceGroupName, string accountName)
+ private IList GetDatabases(string accountName)
{
- return _catalogClient.Catalog.ListDatabases(resourceGroupName, accountName).DatabaseList.Value;
+ List toReturn = new List();
+ var response = _catalogClient.Catalog.ListDatabases(accountName);
+ toReturn.AddRange(response);
+ while (!string.IsNullOrEmpty(response.NextPageLink))
+ {
+ response = _catalogClient.Catalog.ListDatabasesNext(response.NextPageLink);
+ toReturn.AddRange(response);
+ }
+
+ return toReturn;
}
- private USqlAssembly GetAssembly(string resourceGroupName, string accountName, string databaseName,
+ private USqlAssembly GetAssembly(string accountName, string databaseName,
string assemblyName)
{
return
- _catalogClient.Catalog.GetAssembly(resourceGroupName, accountName, databaseName, assemblyName).Assembly;
+ _catalogClient.Catalog.GetAssembly(databaseName, assemblyName, accountName);
}
- private IList GetAssemblies(string resourceGroupName, string accountName, string databaseName)
+ private IList GetAssemblies(string accountName, string databaseName)
{
- return
- _catalogClient.Catalog.ListAssemblies(resourceGroupName, accountName, databaseName).AssemblyList.Value;
+ List toReturn = new List();
+ var response = _catalogClient.Catalog.ListAssemblies(databaseName, accountName);
+ toReturn.AddRange(response);
+ while (!string.IsNullOrEmpty(response.NextPageLink))
+ {
+ response = _catalogClient.Catalog.ListAssembliesNext(response.NextPageLink);
+ toReturn.AddRange(response);
+ }
+
+ return toReturn;
}
- private USqlExternalDataSource GetExternalDataSource(string resourceGroupName, string accountName,
+ private USqlExternalDataSource GetExternalDataSource(string accountName,
string databaseName, string dataSourceName)
{
return
- _catalogClient.Catalog.GetExternalDataSource(resourceGroupName, accountName, databaseName,
- dataSourceName).ExternalDataSource;
+ _catalogClient.Catalog.GetExternalDataSource(databaseName,
+ dataSourceName, accountName);
}
- private IList GetExternalDataSources(string resourceGroupName, string accountName,
+ private IList GetExternalDataSources(string accountName,
string databaseName)
{
- return
- _catalogClient.Catalog.ListExternalDataSources(resourceGroupName, accountName, databaseName)
- .ExternalDataSourceList.Value;
+ List toReturn = new List();
+ var response = _catalogClient.Catalog.ListExternalDataSources(databaseName, accountName);
+ toReturn.AddRange(response);
+ while (!string.IsNullOrEmpty(response.NextPageLink))
+ {
+ response = _catalogClient.Catalog.ListExternalDataSourcesNext(response.NextPageLink);
+ toReturn.AddRange(response);
+ }
+
+ return toReturn;
}
- private USqlCredential GetCredential(string resourceGroupName, string accountName,
+ private USqlCredential GetCredential(string accountName,
string databaseName, string credName)
{
return
- _catalogClient.Catalog.GetCredential(resourceGroupName, accountName, databaseName,
- credName).Credential;
+ _catalogClient.Catalog.GetCredential(databaseName,
+ credName, accountName);
}
- private IList GetCredentials(string resourceGroupName, string accountName,
+ private IList GetCredentials(string accountName,
string databaseName)
{
- return
- _catalogClient.Catalog.ListCredentials(resourceGroupName, accountName, databaseName)
- .CredentialList.Value;
+ List toReturn = new List();
+ var response = _catalogClient.Catalog.ListCredentials(databaseName, accountName);
+ toReturn.AddRange(response);
+ while (!string.IsNullOrEmpty(response.NextPageLink))
+ {
+ response = _catalogClient.Catalog.ListCredentialsNext(response.NextPageLink);
+ toReturn.AddRange(response);
+ }
+
+ return toReturn;
}
- private USqlSchema GetSchema(string resourceGroupName, string accountName, string databaseName,
+ private USqlSchema GetSchema(string accountName, string databaseName,
string schemaName)
{
- return _catalogClient.Catalog.GetSchema(resourceGroupName, accountName, databaseName, schemaName).Schema;
+ return _catalogClient.Catalog.GetSchema(databaseName, schemaName, accountName);
}
- private IList GetSchemas(string resourceGroupName, string accountName, string databaseName)
+ private IList GetSchemas(string accountName, string databaseName)
{
- return _catalogClient.Catalog.ListSchemas(resourceGroupName, accountName, databaseName).SchemaList.Value;
+ List toReturn = new List();
+ var response = _catalogClient.Catalog.ListSchemas(databaseName, accountName);
+ toReturn.AddRange(response);
+ while (!string.IsNullOrEmpty(response.NextPageLink))
+ {
+ response = _catalogClient.Catalog.ListSchemasNext(response.NextPageLink);
+ toReturn.AddRange(response);
+ }
+
+ return toReturn;
}
- private USqlTable GetTable(string resourceGroupName, string accountName, string databaseName, string schemaName,
+ private USqlTable GetTable(string accountName, string databaseName, string schemaName,
string tableName)
{
return
- _catalogClient.Catalog.GetTable(resourceGroupName, accountName, databaseName, schemaName, tableName)
- .Table;
+ _catalogClient.Catalog.GetTable(databaseName, schemaName, tableName, accountName);
}
- private IList GetTables(string resourceGroupName, string accountName, string databaseName,
+ private IList GetTables(string accountName, string databaseName,
string schemaName)
{
- return
- _catalogClient.Catalog.ListTables(resourceGroupName, accountName, databaseName, schemaName)
- .TableList.Value;
+ List toReturn = new List();
+ var response = _catalogClient.Catalog.ListTables(databaseName, schemaName, accountName);
+ toReturn.AddRange(response);
+ while (!string.IsNullOrEmpty(response.NextPageLink))
+ {
+ response = _catalogClient.Catalog.ListTablesNext(response.NextPageLink);
+ toReturn.AddRange(response);
+ }
+
+ return toReturn;
}
- private USqlTableValuedFunction GetTableValuedFunction(string resourceGroupName, string accountName,
+ private USqlTableValuedFunction GetTableValuedFunction(string accountName,
string databaseName, string schemaName, string tableValuedFunctionName)
{
return
- _catalogClient.Catalog.GetTableValuedFunction(resourceGroupName, accountName, databaseName, schemaName,
- tableValuedFunctionName).TableValuedFunction;
+ _catalogClient.Catalog.GetTableValuedFunction(databaseName, schemaName,
+ tableValuedFunctionName, accountName);
}
- private IList GetTableValuedFunctions(string resourceGroupName, string accountName,
+ private IList GetTableValuedFunctions(string accountName,
string databaseName, string schemaName)
{
- return
- _catalogClient.Catalog.ListTableValuedFunctions(resourceGroupName, accountName, databaseName, schemaName)
- .TableValuedFunctionList.Value;
+ List toReturn = new List();
+ var response = _catalogClient.Catalog.ListTableValuedFunctions(databaseName, schemaName, accountName);
+ toReturn.AddRange(response);
+ while (!string.IsNullOrEmpty(response.NextPageLink))
+ {
+ response = _catalogClient.Catalog.ListTableValuedFunctionsNext(response.NextPageLink);
+ toReturn.AddRange(response);
+ }
+
+ return toReturn;
}
- private USqlTableStatistics GetTableStatistic(string resourceGroupName, string accountName, string databaseName,
+ private USqlTableStatistics GetTableStatistic(string accountName, string databaseName,
string schemaName, string tableName, string statisticsName)
{
return
- _catalogClient.Catalog.GetTableStatistic(resourceGroupName, accountName, databaseName, schemaName,
- tableName, statisticsName).Statistics;
+ _catalogClient.Catalog.GetTableStatistic(databaseName, schemaName,
+ tableName, statisticsName, accountName);
}
- private IList GetTableStatistics(string resourceGroupName, string accountName,
+ private IList GetTableStatistics(string accountName,
string databaseName, string schemaName, string tableName)
{
- return
- _catalogClient.Catalog.ListTableStatistics(resourceGroupName, accountName, databaseName, schemaName,
- tableName).StatisticsList.Value;
+ List toReturn = new List();
+ var response = _catalogClient.Catalog.ListTableStatistics(databaseName, schemaName, tableName, accountName);
+ toReturn.AddRange(response);
+ while (!string.IsNullOrEmpty(response.NextPageLink))
+ {
+ response = _catalogClient.Catalog.ListTableStatisticsNext(response.NextPageLink);
+ toReturn.AddRange(response);
+ }
+
+ return toReturn;
}
- private USqlView GetView(string resourceGroupName, string accountName, string databaseName, string schemaName,
+ private USqlView GetView(string accountName, string databaseName, string schemaName,
string viewName)
{
return
- _catalogClient.Catalog.GetView(resourceGroupName, accountName, databaseName, schemaName, viewName)
- .View;
+ _catalogClient.Catalog.GetView(databaseName, schemaName, viewName, accountName);
}
- private IList GetViews(string resourceGroupName, string accountName, string databaseName,
+ private IList GetViews(string accountName, string databaseName,
string schemaName)
{
- return
- _catalogClient.Catalog.ListViews(resourceGroupName, accountName, databaseName, schemaName)
- .ViewList.Value;
+ List toReturn = new List();
+ var response = _catalogClient.Catalog.ListViews(databaseName, schemaName, accountName);
+ toReturn.AddRange(response);
+ while (!string.IsNullOrEmpty(response.NextPageLink))
+ {
+ response = _catalogClient.Catalog.ListViewsNext(response.NextPageLink);
+ toReturn.AddRange(response);
+ }
+
+ return toReturn;
}
- private USqlProcedure GetProcedure(string resourceGroupName, string accountName, string databaseName, string schemaName,
+ private USqlProcedure GetProcedure(string accountName, string databaseName, string schemaName,
string procName)
{
return
- _catalogClient.Catalog.GetProcedure(resourceGroupName, accountName, databaseName, schemaName, procName)
- .Procedure;
+ _catalogClient.Catalog.GetProcedure(databaseName, schemaName, procName, accountName);
}
- private IList GetProcedures(string resourceGroupName, string accountName, string databaseName,
+ private IList GetProcedures(string accountName, string databaseName,
string schemaName)
{
- return
- _catalogClient.Catalog.ListProcedures(resourceGroupName, accountName, databaseName, schemaName)
- .ProcedureList.Value;
+ List toReturn = new List();
+ var response = _catalogClient.Catalog.ListProcedures(databaseName, schemaName, accountName);
+ toReturn.AddRange(response);
+ while (!string.IsNullOrEmpty(response.NextPageLink))
+ {
+ response = _catalogClient.Catalog.ListProceduresNext(response.NextPageLink);
+ toReturn.AddRange(response);
+ }
+
+ return toReturn;
}
- private IList GetTypes(string resourceGroupName, string accountName, string databaseName,
+ private IList GetTypes(string accountName, string databaseName,
string schemaName)
{
- return
- _catalogClient.Catalog.ListTypes(resourceGroupName, accountName, databaseName, schemaName, null)
- .TypeList.Value;
+ List toReturn = new List();
+ var response = _catalogClient.Catalog.ListTypes(databaseName, schemaName, accountName);
+ toReturn.AddRange(response);
+ while (!string.IsNullOrEmpty(response.NextPageLink))
+ {
+ response = _catalogClient.Catalog.ListTypesNext(response.NextPageLink);
+ toReturn.AddRange(response);
+ }
+
+ return toReturn;
}
#endregion
#region Job Related Operations
- public JobInformation GetJob(string resourceGroupName, string accountName, Guid jobId)
+ public JobInformation GetJob(string accountName, Guid jobId)
{
- if (string.IsNullOrEmpty(resourceGroupName))
- {
- resourceGroupName = GetResourceGroupByAccountName(accountName);
- }
-
- return _jobClient.Jobs.Get(resourceGroupName, accountName, jobId).Job;
+ return _jobClient.Job.Get(jobId.ToString(), accountName);
}
- public JobInformation SubmitJob(string resourceGroupName, string accountName, JobInformation jobToSubmit)
+ public JobInformation SubmitJob(string accountName, JobInformation jobToSubmit)
{
- if (string.IsNullOrEmpty(resourceGroupName))
- {
- resourceGroupName = GetResourceGroupByAccountName(accountName);
- }
-
return
- _jobClient.Jobs.Create(resourceGroupName, accountName,
- new JobInfoBuildOrCreateParameters {Job = jobToSubmit}).Job;
+ _jobClient.Job.Create(jobToSubmit.JobId,
+ jobToSubmit, accountName);
}
- public JobInformation BuildJob(string resourceGroupName, string accountName, JobInformation jobToBuild)
+ public JobInformation BuildJob(string accountName, JobInformation jobToBuild)
{
- if (string.IsNullOrEmpty(resourceGroupName))
- {
- resourceGroupName = GetResourceGroupByAccountName(accountName);
- }
-
return
- _jobClient.Jobs.Build(resourceGroupName, accountName,
- new JobInfoBuildOrCreateParameters {Job = jobToBuild}).Job;
+ _jobClient.Job.Build(jobToBuild, accountName);
}
- public AzureOperationResponse CancelJob(string resourceGroupName, string accountName, Guid jobId)
+ public void CancelJob(string accountName, Guid jobId)
{
- if (string.IsNullOrEmpty(resourceGroupName))
- {
- resourceGroupName = GetResourceGroupByAccountName(accountName);
- }
-
- return _jobClient.Jobs.Cancel(resourceGroupName, accountName, jobId);
+ _jobClient.Job.Cancel(jobId.ToString(), accountName);
}
- public JobDataPath GetDebugDataPaths(string resourceGroupName, string accountName, Guid jobId)
+ public JobDataPath GetDebugDataPaths(string accountName, Guid jobId)
{
- if (string.IsNullOrEmpty(resourceGroupName))
- {
- resourceGroupName = GetResourceGroupByAccountName(accountName);
- }
-
- return _jobClient.Jobs.GetDebugDataPath(resourceGroupName, accountName, jobId).JobData;
+ return _jobClient.Job.GetDebugDataPath(jobId.ToString(), accountName);
}
- public JobStatistics GetJobStatistics(string resourceGroupName, string accountName, Guid jobId)
+ public JobStatistics GetJobStatistics(string accountName, Guid jobId)
{
- if (string.IsNullOrEmpty(resourceGroupName))
- {
- resourceGroupName = GetResourceGroupByAccountName(accountName);
- }
-
- return _jobClient.Jobs.GetStatistics(resourceGroupName, accountName, jobId).Statistics;
+ return _jobClient.Job.GetStatistics(jobId.ToString(), accountName);
}
- public List ListJobs(string resourceGroupName, string accountName, string filter, int? top,
+ public List ListJobs(string accountName, string filter, int? top,
int? skip)
{
- if (string.IsNullOrEmpty(resourceGroupName))
- {
- resourceGroupName = GetResourceGroupByAccountName(accountName);
- }
-
- var parameters = new JobListParameters
+ var parameters = new ODataQuery
{
Filter = filter,
Top = top,
@@ -819,13 +795,13 @@ public List ListJobs(string resourceGroupName, string accountNam
};
var jobList = new List();
- var response = _jobClient.Jobs.List(resourceGroupName, accountName, parameters);
+ var response = _jobClient.Job.List(accountName, parameters);
- jobList.AddRange(response.Value);
- while (!string.IsNullOrEmpty(response.NextLink))
+ jobList.AddRange(response);
+ while (!string.IsNullOrEmpty(response.NextPageLink))
{
- response = ListJobsWithNextLink(response.NextLink, resourceGroupName);
- jobList.AddRange(response.Value);
+ response = ListJobsWithNextLink(response.NextPageLink);
+ jobList.AddRange(response);
}
return jobList;
@@ -835,9 +811,9 @@ public List ListJobs(string resourceGroupName, string accountNam
#region private helpers
- private JobInfoListResponse ListJobsWithNextLink(string nextLink, string resourceGroupName)
+ private IPage ListJobsWithNextLink(string nextLink)
{
- return _jobClient.Jobs.ListNext(nextLink, resourceGroupName);
+ return _jobClient.Job.ListNext(nextLink);
}
private string GetResourceGroupByAccountName(string accountName)
@@ -931,7 +907,6 @@ private bool IsCatalogItemOrList(CatalogPathInstance path, DataLakeAnalyticsEnum
return isList;
}
-
#endregion
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsCmdletBase.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsCmdletBase.cs
index 07f816311f38..4f3fafa72241 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsCmdletBase.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models/DataLakeAnalyticsCmdletBase.cs
@@ -12,7 +12,12 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
+using System;
+using Microsoft.Azure.Commands.Common.Authentication;
+using Microsoft.Azure.Commands.Common.Authentication.Models;
+using Microsoft.Azure.Commands.Common.Authentication.Properties;
using Microsoft.Azure.Commands.ResourceManager.Common;
+using Microsoft.Rest;
namespace Microsoft.Azure.Commands.DataLakeAnalytics.Models
{
@@ -36,5 +41,39 @@ public DataLakeAnalyticsClient DataLakeAnalyticsClient
set { _bigAnalyticsClient = value; }
}
+
+ internal static TClient CreateAdlaClient(AzureContext context, AzureEnvironment.Endpoint endpoint, bool parameterizedBaseUri = false) where TClient : ServiceClient
+ {
+ if (context == null)
+ {
+ throw new ApplicationException(Resources.NoSubscriptionInContext);
+ }
+
+ var creds = AzureSession.AuthenticationFactory.GetServiceClientCredentials(context);
+ var clientFactory = AzureSession.ClientFactory;
+ var newHandlers = clientFactory.GetCustomHandlers();
+ TClient client;
+ if (!parameterizedBaseUri)
+ {
+ client = (newHandlers == null || newHandlers.Length == 0)
+ // string.Empty ensures that we hit the constructors that set the assembly version properly
+ ? clientFactory.CreateCustomArmClient(context.Environment.GetEndpointAsUri(endpoint), creds, string.Empty)
+ : clientFactory.CreateCustomArmClient(context.Environment.GetEndpointAsUri(endpoint), creds, string.Empty, clientFactory.GetCustomHandlers());
+ }
+ else
+ {
+ client = (newHandlers == null || newHandlers.Length == 0)
+ ? clientFactory.CreateCustomArmClient(creds, string.Empty, context.Environment.GetEndpoint(endpoint))
+ : clientFactory.CreateCustomArmClient(creds, string.Empty, context.Environment.GetEndpoint(endpoint), clientFactory.GetCustomHandlers());
+ }
+
+ var subscriptionId = typeof(TClient).GetProperty("SubscriptionId");
+ if (subscriptionId != null && context.Subscription != null)
+ {
+ subscriptionId.SetValue(client, context.Subscription.Id.ToString());
+ }
+
+ return client;
+ }
}
}
\ 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 3d5b645d149d..777a6bf81b08 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.Designer.cs
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.Designer.cs
@@ -8,10 +8,14 @@
//
//------------------------------------------------------------------------------
+using System.CodeDom.Compiler;
+using System.ComponentModel;
+using System.Diagnostics;
+using System.Diagnostics.CodeAnalysis;
+using System.Globalization;
+using System.Runtime.CompilerServices;
+
namespace Microsoft.Azure.Commands.DataLakeAnalytics.Properties {
- using System;
-
-
///
/// A strongly-typed resource class, for looking up localized strings, etc.
///
@@ -19,27 +23,27 @@ namespace Microsoft.Azure.Commands.DataLakeAnalytics.Properties {
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [DebuggerNonUserCode()]
+ [CompilerGenerated()]
internal class Resources {
- private static global::System.Resources.ResourceManager resourceMan;
+ private static System.Resources.ResourceManager resourceMan;
- private static global::System.Globalization.CultureInfo resourceCulture;
+ private static CultureInfo resourceCulture;
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
///
/// Returns the cached ResourceManager instance used by this class.
///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Resources.ResourceManager ResourceManager {
+ [EditorBrowsable(EditorBrowsableState.Advanced)]
+ internal static System.Resources.ResourceManager ResourceManager {
get {
- if (object.ReferenceEquals(resourceMan, null)) {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.Commands.DataLakeAnalytics.Properties.Resources", typeof(Resources).Assembly);
+ if (ReferenceEquals(resourceMan, null)) {
+ System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Microsoft.Azure.Commands.DataLakeAnalytics.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
@@ -50,8 +54,8 @@ internal Resources() {
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Globalization.CultureInfo Culture {
+ [EditorBrowsable(EditorBrowsableState.Advanced)]
+ internal static CultureInfo Culture {
get {
return resourceCulture;
}
diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/packages.config b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/packages.config
index b4f7dff4728a..bfb1a2d0be14 100644
--- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/packages.config
+++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/packages.config
@@ -3,9 +3,7 @@
-
-
-
+
@@ -13,6 +11,7 @@
+
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/Commands.DataLakeStore.Test.csproj b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/Commands.DataLakeStore.Test.csproj
index 44eb26171a68..5b00c40f8847 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/Commands.DataLakeStore.Test.csproj
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/Commands.DataLakeStore.Test.csproj
@@ -54,17 +54,23 @@
..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll
-
- False
- ..\..\..\packages\Microsoft.Azure.Management.DataLake.Store.0.9.1-preview\lib\net40\Microsoft.Azure.Management.DataLake.Store.dll
+
+ ..\..\..\packages\Microsoft.Azure.Gallery.2.6.2-preview\lib\net40\Microsoft.Azure.Gallery.dll
+ True
+
+
+ ..\..\..\packages\Microsoft.Azure.Management.Authorization.2.0.0\lib\net40\Microsoft.Azure.Management.Authorization.dll
+ True
-
+
False
- ..\..\..\packages\Microsoft.Azure.Management.DataLake.StoreFileSystem.0.9.6-preview\lib\net40\Microsoft.Azure.Management.DataLake.StoreFileSystem.dll
+ ..\..\..\packages\Microsoft.Azure.Management.DataLake.Store.0.10.0-preview\lib\net45\Microsoft.Azure.Management.DataLake.Store.dll
+ True
-
+
False
- ..\..\..\packages\Microsoft.Azure.Management.DataLake.StoreUploader.0.9.6-preview\lib\net40\Microsoft.Azure.Management.DataLake.StoreUploader.dll
+ ..\..\..\packages\Microsoft.Azure.Management.DataLake.StoreUploader.0.10.0-preview\lib\net45\Microsoft.Azure.Management.DataLake.StoreUploader.dll
+ True
False
@@ -74,9 +80,10 @@
False
..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5896.19355-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll
-
+
False
- ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.0.5896.19355-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll
+ ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.6.0-preview\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll
+ True
False
@@ -90,10 +97,19 @@
..\..\..\packages\Microsoft.Rest.ClientRuntime.2.0.1\lib\net45\Microsoft.Rest.ClientRuntime.dll
True
+
+ False
+ ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.3.0.2\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll
+ True
+
..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.2.0.1-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll
True
+
+ ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.TestFramework.1.2.1-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.TestFramework.dll
+ True
+
False
..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll
@@ -134,6 +150,7 @@
..\..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll
+
@@ -183,6 +200,9 @@
PreserveNewest
+
+ PreserveNewest
+
Always
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/ScenarioTests/AdlsTests.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/ScenarioTests/AdlsTests.cs
index c4d514b60d6e..c239c7379e5f 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/ScenarioTests/AdlsTests.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/ScenarioTests/AdlsTests.cs
@@ -24,28 +24,28 @@ public class AdlsTests : AdlsTestsBase
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestAdlsAccount()
{
- RunPowerShellTest(string.Format("Test-DataLakeStoreAccount -resourceGroupName {0} -accountName {1} -location '{2}'", this.resourceGroupName, this.dataLakeAccountName, AdlsTestsBase.resourceGroupLocation));
+ NewInstance.RunPsTest(string.Format("Test-DataLakeStoreAccount -location '{0}'", AdlsTestsBase.resourceGroupLocation));
}
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestAdlsFileSystem()
{
- RunPowerShellTest(string.Format("Test-DataLakeStoreFileSystem -resourceGroupName {0} -accountName {1} -fileToCopy '{2}' -location '{3}'", this.resourceGroupName, this.dataLakeAccountName, ".\\ScenarioTests\\" + this.GetType().Name + ".ps1", AdlsTestsBase.resourceGroupLocation));
+ NewInstance.RunPsTest(string.Format("Test-DataLakeStoreFileSystem -fileToCopy '{0}' -location '{1}'", ".\\ScenarioTests\\" + this.GetType().Name + ".ps1", AdlsTestsBase.resourceGroupLocation));
}
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestAdlsFileSystemPermissions()
{
- RunPowerShellTest(string.Format("Test-DataLakeStoreFileSystemPermissions -resourceGroupName {0} -accountName {1} -location '{2}'", this.resourceGroupName, this.dataLakeAccountName, AdlsTestsBase.resourceGroupLocation));
+ NewInstance.RunPsTest(string.Format("Test-DataLakeStoreFileSystemPermissions -location '{0}'", AdlsTestsBase.resourceGroupLocation));
}
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestNegativeAdlsAccount()
{
- RunPowerShellTest(string.Format("Test-NegativeDataLakeStoreAccount -resourceGroupName {0} -accountName {1} -location '{2}'", this.resourceGroupName, this.dataLakeAccountName, AdlsTestsBase.resourceGroupLocation));
+ NewInstance.RunPsTest(string.Format("Test-NegativeDataLakeStoreAccount -location '{0}'", AdlsTestsBase.resourceGroupLocation));
}
}
}
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/ScenarioTests/AdlsTests.ps1 b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/ScenarioTests/AdlsTests.ps1
index 8b900c70fd3a..d36a8d48ac09 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/ScenarioTests/AdlsTests.ps1
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/ScenarioTests/AdlsTests.ps1
@@ -6,309 +6,339 @@ function Test-DataLakeStoreAccount
{
param
(
- $resourceGroupName,
- $accountName,
$location = "West US"
)
- # Creating Account
- $accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location
+ try
+ {
+ # Creating Account
+ $resourceGroupName = Get-ResourceGroupName
+ $accountName = Get-DataLakeStoreAccountName
+ New-AzureRmResourceGroup -Name $resourceGroupName -Location $location
+ $accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location
- Assert-AreEqual $accountName $accountCreated.Name
- Assert-AreEqual $location $accountCreated.Location
- Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountCreated.Type
- Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
-
- # In loop to check if account exists
- for ($i = 0; $i -le 60; $i++)
- {
- [array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName
- if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
- {
- Assert-AreEqual $accountName $accountGet[0].Name
- Assert-AreEqual $location $accountGet[0].Location
- Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountGet[0].Type
- Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
- break
- }
-
- Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
- [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
- Assert-False {$i -eq 60} " Data Lake Store account is not in succeeded state even after 30 min."
- }
-
- # Updating Account
- $tagsToUpdate = @{"Name" = "TestTag"; "Value" = "TestUpdate"}
- $accountUpdated = Set-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Tags $tagsToUpdate
+ Assert-AreEqual $accountName $accountCreated.Name
+ Assert-AreEqual $location $accountCreated.Location
+ Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountCreated.Type
+ Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
+
+ # In loop to check if account exists
+ for ($i = 0; $i -le 60; $i++)
+ {
+ [array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName
+ if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
+ {
+ Assert-AreEqual $accountName $accountGet[0].Name
+ Assert-AreEqual $location $accountGet[0].Location
+ Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountGet[0].Type
+ Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
+ break
+ }
+
+ Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
+ Assert-False {$i -eq 60} " Data Lake Store account is not in succeeded state even after 30 min."
+ }
+
+ # Updating Account
+ $tagsToUpdate = @{"Name" = "TestTag"; "Value" = "TestUpdate"}
+ $accountUpdated = Set-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Tags $tagsToUpdate
- Assert-AreEqual $accountName $accountUpdated.Name
- Assert-AreEqual $location $accountUpdated.Location
- Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountUpdated.Type
- Assert-True {$accountUpdated.Id -like "*$resourceGroupName*"}
+ Assert-AreEqual $accountName $accountUpdated.Name
+ Assert-AreEqual $location $accountUpdated.Location
+ Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountUpdated.Type
+ Assert-True {$accountUpdated.Id -like "*$resourceGroupName*"}
- Assert-NotNull $accountUpdated.Tags "Tags do not exists"
- Assert-NotNull $accountUpdated.Tags["TestTag"] "The updated tag 'TestTag' does not exist"
+ Assert-NotNull $accountUpdated.Tags "Tags do not exists"
+ Assert-NotNull $accountUpdated.Tags["TestTag"] "The updated tag 'TestTag' does not exist"
- # List all accounts in resource group
- [array]$accountsInResourceGroup = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName
- Assert-True {$accountsInResourceGroup.Count -ge 1}
+ # List all accounts in resource group
+ [array]$accountsInResourceGroup = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName
+ Assert-True {$accountsInResourceGroup.Count -ge 1}
- $found = 0
- for ($i = 0; $i -lt $accountsInResourceGroup.Count; $i++)
- {
- if ($accountsInResourceGroup[$i].Name -eq $accountName)
- {
- $found = 1
- Assert-AreEqual $location $accountsInResourceGroup[$i].Location
- Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountsInResourceGroup[$i].Type
- Assert-True {$accountsInResourceGroup[$i].Id -like "*$resourceGroupName*"}
-
- break
- }
- }
- Assert-True {$found -eq 1} "Account created earlier is not found when listing all in resource group: $resourceGroupName."
-
- # List all Data Lake accounts in subscription
- [array]$accountsInSubscription = Get-AzureRmDataLakeStoreAccount
- Assert-True {$accountsInSubscription.Count -ge 1}
- Assert-True {$accountsInSubscription.Count -ge $accountsInResourceGroup.Count}
+ $found = 0
+ for ($i = 0; $i -lt $accountsInResourceGroup.Count; $i++)
+ {
+ if ($accountsInResourceGroup[$i].Name -eq $accountName)
+ {
+ $found = 1
+ Assert-AreEqual $location $accountsInResourceGroup[$i].Location
+ Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountsInResourceGroup[$i].Type
+ Assert-True {$accountsInResourceGroup[$i].Id -like "*$resourceGroupName*"}
+
+ break
+ }
+ }
+ Assert-True {$found -eq 1} "Account created earlier is not found when listing all in resource group: $resourceGroupName."
+
+ # List all Data Lake accounts in subscription
+ [array]$accountsInSubscription = Get-AzureRmDataLakeStoreAccount
+ Assert-True {$accountsInSubscription.Count -ge 1}
+ Assert-True {$accountsInSubscription.Count -ge $accountsInResourceGroup.Count}
- $found = 0
- for ($i = 0; $i -lt $accountsInSubscription.Count; $i++)
- {
- if ($accountsInSubscription[$i].Name -eq $accountName)
- {
- $found = 1
- Assert-AreEqual $location $accountsInSubscription[$i].Location
- Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountsInSubscription[$i].Type
- Assert-True {$accountsInSubscription[$i].Id -like "*$resourceGroupName*"}
+ $found = 0
+ for ($i = 0; $i -lt $accountsInSubscription.Count; $i++)
+ {
+ if ($accountsInSubscription[$i].Name -eq $accountName)
+ {
+ $found = 1
+ Assert-AreEqual $location $accountsInSubscription[$i].Location
+ Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountsInSubscription[$i].Type
+ Assert-True {$accountsInSubscription[$i].Id -like "*$resourceGroupName*"}
- break
- }
- }
- Assert-True {$found -eq 1} "Account created earlier is not found when listing all in subscription."
+ break
+ }
+ }
+ Assert-True {$found -eq 1} "Account created earlier is not found when listing all in subscription."
- # Delete Data Lake account
- Assert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
+ # Delete Data Lake account
+ Assert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
- # Verify that it is gone by trying to get it again
- Assert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ # Verify that it is gone by trying to get it again
+ Assert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ }
+ finally
+ {
+ # cleanup the resource group that was used in case it still exists. This is a best effort task, we ignore failures here.
+ Invoke-HandledCmdlet -Command {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ Invoke-HandledCmdlet -Command {Remove-AzureRmResourceGroup -Name $resourceGroupName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ }
}
function Test-DataLakeStoreFileSystem
{
param
(
- $resourceGroupName,
- $accountName,
$fileToCopy,
$location = "West US"
)
- # Creating Account
- $accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location
+ try
+ {
+ # Creating Account
+ $resourceGroupName = Get-ResourceGroupName
+ $accountName = Get-DataLakeStoreAccountName
+ New-AzureRmResourceGroup -Name $resourceGroupName -Location $location
+ $accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location
- Assert-AreEqual $accountName $accountCreated.Name
- Assert-AreEqual $location $accountCreated.Location
- Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountCreated.Type
- Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
-
- # In loop to check if account exists
- for ($i = 0; $i -le 60; $i++)
- {
- [array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName
- if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
- {
- Assert-AreEqual $accountName $accountGet[0].Name
- Assert-AreEqual $location $accountGet[0].Location
- Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountGet[0].Type
- Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
- break
- }
-
- Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
- [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
- Assert-False {$i -eq 60} " Data Lake Store account is not in succeeded state even after 30 min."
- }
-
- # define all the files and folders to create
- $folderToCreate = "/adlspstestfolder"
- $emptyFilePath = "$folderToCreate\emptyfile.txt" # have one where the slash is in the wrong direction to make sure they get fixed.
- $contentFilePath = "$folderToCreate/contentfile.txt"
- $concatFile = "$folderToCreate/concatfile.txt"
- $moveFile = "$folderToCreate/movefile.txt"
- $movefolder = "/adlspstestmovefolder"
- $importFile = "$folderToCreate/importfile.txt"
- $content = "Test file content! @ Azure PsTest01?"
+ Assert-AreEqual $accountName $accountCreated.Name
+ Assert-AreEqual $location $accountCreated.Location
+ Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountCreated.Type
+ Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
+
+ # In loop to check if account exists
+ for ($i = 0; $i -le 60; $i++)
+ {
+ [array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName
+ if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
+ {
+ Assert-AreEqual $accountName $accountGet[0].Name
+ Assert-AreEqual $location $accountGet[0].Location
+ Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountGet[0].Type
+ Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
+ break
+ }
+
+ Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
+ Assert-False {$i -eq 60} " Data Lake Store account is not in succeeded state even after 30 min."
+ }
+
+ # define all the files and folders to create
+ $folderToCreate = "/adlspstestfolder"
+ $emptyFilePath = "$folderToCreate\emptyfile.txt" # have one where the slash is in the wrong direction to make sure they get fixed.
+ $contentFilePath = "$folderToCreate/contentfile.txt"
+ $concatFile = "$folderToCreate/concatfile.txt"
+ $moveFile = "$folderToCreate/movefile.txt"
+ $movefolder = "/adlspstestmovefolder"
+ $importFile = "$folderToCreate/importfile.txt"
+ $content = "Test file content! @ Azure PsTest01?"
- # Create and get Empty folder
- $result = New-AzureRMDataLakeStoreItem -Account $accountName -path $folderToCreate -Folder
- Assert-NotNull $result "No value was returned on folder creation"
- $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $folderToCreate
- Assert-NotNull $result "No value was returned on folder get"
- Assert-AreEqual "Directory" $result.Type
- # Create and get Empty File
- $result = New-AzureRMDataLakeStoreItem -Account $accountName -path $emptyFilePath
- Assert-NotNull $result "No value was returned on empty file creation"
- $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $emptyFilePath
- Assert-NotNull $result "No value was returned on empty file get"
- Assert-AreEqual "File" $result.Type
- Assert-AreEqual 0 $result.Length
- # Create and get file with content
- $result = New-AzureRMDataLakeStoreItem -Account $accountName -path $contentFilePath -Value $content
- Assert-NotNull $result "No value was returned on content file creation"
- $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $contentFilePath
- Assert-NotNull $result "No value was returned on content file get"
- Assert-AreEqual "File" $result.Type
- Assert-AreEqual $content.length $result.Length
- # list files
- $result = Get-AzureRMDataLakeStoreChildItem -Account $accountName -path $folderToCreate
- Assert-NotNull $result "No value was returned on folder list"
- Assert-AreEqual 2 $result.length
- # add content to empty file
- Add-AzureRmDataLakeStoreItemContent -Account $accountName -Path $emptyFilePath -Value $content
- $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $emptyFilePath
- Assert-NotNull $result "No value was returned on empty file get with content added"
- Assert-AreEqual "File" $result.Type
- Assert-AreEqual $content.length $result.Length
- # concat files
- $result = Join-AzureRmDataLakeStoreItem -Account $accountName -Paths $emptyFilePath,$contentFilePath -Destination $concatFile
- Assert-NotNull $result "No value was returned on concat file"
- $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $concatFile
- Assert-NotNull $result "No value was returned on concat file get"
- Assert-AreEqual "File" $result.Type
- Assert-AreEqual $($content.length*2) $result.Length
+ # Create and get Empty folder
+ $result = New-AzureRMDataLakeStoreItem -Account $accountName -path $folderToCreate -Folder
+ Assert-NotNull $result "No value was returned on folder creation"
+ $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $folderToCreate
+ Assert-NotNull $result "No value was returned on folder get"
+ Assert-AreEqual "Directory" $result.Type
+ # Create and get Empty File
+ $result = New-AzureRMDataLakeStoreItem -Account $accountName -path $emptyFilePath
+ Assert-NotNull $result "No value was returned on empty file creation"
+ $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $emptyFilePath
+ Assert-NotNull $result "No value was returned on empty file get"
+ Assert-AreEqual "File" $result.Type
+ Assert-AreEqual 0 $result.Length
+ # Create and get file with content
+ $result = New-AzureRMDataLakeStoreItem -Account $accountName -path $contentFilePath -Value $content
+ Assert-NotNull $result "No value was returned on content file creation"
+ $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $contentFilePath
+ Assert-NotNull $result "No value was returned on content file get"
+ Assert-AreEqual "File" $result.Type
+ Assert-AreEqual $content.length $result.Length
+ # list files
+ $result = Get-AzureRMDataLakeStoreChildItem -Account $accountName -path $folderToCreate
+ Assert-NotNull $result "No value was returned on folder list"
+ Assert-AreEqual 2 $result.length
+ # add content to empty file
+ Add-AzureRmDataLakeStoreItemContent -Account $accountName -Path $emptyFilePath -Value $content
+ $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $emptyFilePath
+ Assert-NotNull $result "No value was returned on empty file get with content added"
+ Assert-AreEqual "File" $result.Type
+ Assert-AreEqual $content.length $result.Length
+ # concat files
+ $result = Join-AzureRmDataLakeStoreItem -Account $accountName -Paths $emptyFilePath,$contentFilePath -Destination $concatFile
+ Assert-NotNull $result "No value was returned on concat file"
+ $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $concatFile
+ Assert-NotNull $result "No value was returned on concat file get"
+ Assert-AreEqual "File" $result.Type
+ Assert-AreEqual $($content.length*2) $result.Length
- # Import and get file
- $localFileInfo = Get-ChildItem $fileToCopy
- $result = Import-AzureRmDataLakeStoreItem -Account $accountName -Path $fileToCopy -Destination $importFile
- Assert-NotNull $result "No value was returned on import file"
- $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $importFile
- Assert-NotNull $result "No value was returned on import file get"
- Assert-AreEqual "File" $result.Type
- Assert-AreEqual $localFileInfo.length $result.Length
- # download file
- $currentDir = Split-Path $fileToCopy
- $targetFile = Join-Path $currentDir "adlspstestdownload.txt"
- if(Test-Path $targetFile)
- {
+ # Import and get file
+ $localFileInfo = Get-ChildItem $fileToCopy
+ $result = Import-AzureRmDataLakeStoreItem -Account $accountName -Path $fileToCopy -Destination $importFile
+ Assert-NotNull $result "No value was returned on import file"
+ $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $importFile
+ Assert-NotNull $result "No value was returned on import file get"
+ Assert-AreEqual "File" $result.Type
+ Assert-AreEqual $localFileInfo.length $result.Length
+ # download file
+ $currentDir = Split-Path $fileToCopy
+ $targetFile = Join-Path $currentDir "adlspstestdownload.txt"
+ if(Test-Path $targetFile)
+ {
+ Remove-Item -path $targetFile -force -confirm:$false
+ }
+
+ Export-AzureRMDataLakeStoreItem -Account $accountName -Path $concatFile -Destination $targetFile
+ $downloadedFileInfo = Get-ChildItem $targetFile
+ Assert-AreEqual $($content.length*2) $downloadedFileInfo.length
Remove-Item -path $targetFile -force -confirm:$false
- }
- Export-AzureRMDataLakeStoreItem -Account $accountName -Path $concatFile -Destination $targetFile
- $downloadedFileInfo = Get-ChildItem $targetFile
- Assert-AreEqual $($content.length*2) $downloadedFileInfo.length
- Remove-Item -path $targetFile -force -confirm:$false
-
- # move a file
- $result = Move-AzureRmDataLakeStoreItem -Account $accountName -Path $concatFile -Destination $moveFile
- Assert-NotNull $result "No value was returned on move file"
- $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFile
- Assert-NotNull $result "No value was returned on move file get"
- Assert-AreEqual "File" $result.Type
- Assert-AreEqual $($content.length*2) $result.Length
- Assert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $concatFile}
- # move a folder
- $result = Move-AzureRmDataLakeStoreItem -Account $accountName -Path $folderToCreate -Destination $moveFolder
- Assert-NotNull $result "No value was returned on move folder"
- $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFolder
- Assert-NotNull $result "No value was returned on move folder get"
- Assert-AreEqual "Directory" $result.Type
- Assert-AreEqual 0 $result.Length
- Assert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $folderToCreate}
- # delete a file
- Assert-True {Remove-AzureRmDataLakeStoreItem -Account $accountName -paths "$moveFolder/movefile.txt" -force -passthru } "Remove File Failed"
- Assert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFile}
- # delete a folder
- Assert-True {Remove-AzureRmDataLakeStoreItem -Account $accountName -paths $moveFolder -force -recurse -passthru} "Remove folder failed"
- Assert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFolder}
+ # move a file
+ $result = Move-AzureRmDataLakeStoreItem -Account $accountName -Path $concatFile -Destination $moveFile
+ Assert-NotNull $result "No value was returned on move file"
+ $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFile
+ Assert-NotNull $result "No value was returned on move file get"
+ Assert-AreEqual "File" $result.Type
+ Assert-AreEqual $($content.length*2) $result.Length
+ Assert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $concatFile}
+ # move a folder
+ $result = Move-AzureRmDataLakeStoreItem -Account $accountName -Path $folderToCreate -Destination $moveFolder
+ Assert-NotNull $result "No value was returned on move folder"
+ $result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFolder
+ Assert-NotNull $result "No value was returned on move folder get"
+ Assert-AreEqual "Directory" $result.Type
+ Assert-AreEqual 0 $result.Length
+ Assert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $folderToCreate}
+ # delete a file
+ Assert-True {Remove-AzureRmDataLakeStoreItem -Account $accountName -paths "$moveFolder/movefile.txt" -force -passthru } "Remove File Failed"
+ Assert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFile}
+ # delete a folder
+ Assert-True {Remove-AzureRmDataLakeStoreItem -Account $accountName -paths $moveFolder -force -recurse -passthru} "Remove folder failed"
+ Assert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFolder}
- # Delete Data Lake account
- Assert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
+ # Delete Data Lake account
+ Assert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
- # Verify that it is gone by trying to get it again
- Assert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ # Verify that it is gone by trying to get it again
+ Assert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ }
+ finally
+ {
+ # cleanup the resource group that was used in case it still exists. This is a best effort task, we ignore failures here.
+ Invoke-HandledCmdlet -Command {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ Invoke-HandledCmdlet -Command {Remove-AzureRmResourceGroup -Name $resourceGroupName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ }
}
function Test-DataLakeStoreFileSystemPermissions
{
param
(
- $resourceGroupName,
- $accountName,
$location = "West US"
)
- # Creating Account
- $accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location
+ try
+ {
+ # Creating Account
+ $resourceGroupName = Get-ResourceGroupName
+ $accountName = Get-DataLakeStoreAccountName
+ New-AzureRmResourceGroup -Name $resourceGroupName -Location $location
+ $accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location
- Assert-AreEqual $accountName $accountCreated.Name
- Assert-AreEqual $location $accountCreated.Location
- Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountCreated.Type
- Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
-
- # In loop to check if account exists
- for ($i = 0; $i -le 60; $i++)
- {
- [array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName
- if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
- {
- Assert-AreEqual $accountName $accountGet[0].Name
- Assert-AreEqual $location $accountGet[0].Location
- Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountGet[0].Type
- Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
- break
- }
-
- Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
- [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
- Assert-False {$i -eq 60} " Data Lake Store account is not in succeeded state even after 30 min."
- }
-
- # define the permissions to add/remove
- $aceUserId = "027c28d5-c91d-49f0-98c5-d10134b169b3"
-
- # Set and get all the permissions
- $result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/"
- Assert-NotNull $result "Did not get any result from ACL get"
- Assert-True {$result.UserAces.count -ge 0} "UserAces is negative or null"
- $currentCount = $result.UserAces.Count
- $result.UserAces.Add($aceUserId, "rwx")
- Set-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/" -Acl $result -Force
- $result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/"
- Assert-AreEqual $($currentCount+1) $result.UserACes.Count
- $result.UserAces.Remove($aceUserId)
- # remove the account
- Set-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/" -Acl $result -Force
- $result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/"
- Assert-AreEqual $currentCount $result.UserAces.Count
-
- # Set and get a specific permission with friendly sets
- Set-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path "/" -AceType User -Id $aceUserId -Permissions All -Force
- $result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/"
- Assert-AreEqual $($currentCount+1) $result.UserAces.Count
- # remove a specific permission with friendly remove
- Remove-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path "/" -AceType User -Id $aceUserId -Force
- $result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/"
- Assert-AreEqual $currentCount $result.UserAces.Count
- # set and get a specific permission with the ACE string
- Set-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path "/" -Acl $([string]::Format("user:{0}:rwx", $aceUserId)) -Force
- $result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/"
- Assert-AreEqual $($currentCount+1) $result.UserAces.Count
- # remove a specific permission with the ACE string
- Remove-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path "/" -Acl $([string]::Format("user:{0}:---", $aceUserId)) -force
- $result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/"
- Assert-AreEqual $currentCount $result.UserAces.Count
- # verify that removal of full acl and default acl fail
- Assert-Throws {Remove-AzureRmDataLakeStoreItemAcl -Account $accountName -Path "/" -Force }
- Assert-Throws {Remove-AzureRmDataLakeStoreItemAcl -Account $accountName -Path "/" -Force -Default }
-
- # Delete Data Lake account
- Assert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
-
- # Verify that it is gone by trying to get it again
- Assert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ Assert-AreEqual $accountName $accountCreated.Name
+ Assert-AreEqual $location $accountCreated.Location
+ Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountCreated.Type
+ Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
+
+ # In loop to check if account exists
+ for ($i = 0; $i -le 60; $i++)
+ {
+ [array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName
+ if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
+ {
+ Assert-AreEqual $accountName $accountGet[0].Name
+ Assert-AreEqual $location $accountGet[0].Location
+ Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountGet[0].Type
+ Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
+ break
+ }
+
+ Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
+ Assert-False {$i -eq 60} " Data Lake Store account is not in succeeded state even after 30 min."
+ }
+
+ # define the permissions to add/remove
+ $aceUserId = "027c28d5-c91d-49f0-98c5-d10134b169b3"
+
+ # Set and get all the permissions
+ $result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/"
+ Assert-NotNull $result "Did not get any result from ACL get"
+ Assert-True {$result.UserAces.count -ge 0} "UserAces is negative or null"
+ $currentCount = $result.UserAces.Count
+ $result.UserAces.Add($aceUserId, "rwx")
+ Set-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/" -Acl $result -Force
+ $result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/"
+ Assert-AreEqual $($currentCount+1) $result.UserACes.Count
+ $result.UserAces.Remove($aceUserId)
+ # remove the account
+ Set-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/" -Acl $result -Force
+ $result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/"
+ Assert-AreEqual $currentCount $result.UserAces.Count
+
+ # Set and get a specific permission with friendly sets
+ Set-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path "/" -AceType User -Id $aceUserId -Permissions All -Force
+ $result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/"
+ Assert-AreEqual $($currentCount+1) $result.UserAces.Count
+ # remove a specific permission with friendly remove
+ Remove-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path "/" -AceType User -Id $aceUserId -Force
+ $result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/"
+ Assert-AreEqual $currentCount $result.UserAces.Count
+ # set and get a specific permission with the ACE string
+ Set-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path "/" -Acl $([string]::Format("user:{0}:rwx", $aceUserId)) -Force
+ $result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/"
+ Assert-AreEqual $($currentCount+1) $result.UserAces.Count
+ # remove a specific permission with the ACE string
+ Remove-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path "/" -Acl $([string]::Format("user:{0}:---", $aceUserId)) -force
+ $result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path "/"
+ Assert-AreEqual $currentCount $result.UserAces.Count
+ # verify that removal of full acl and default acl fail
+ Assert-Throws {Remove-AzureRmDataLakeStoreItemAcl -Account $accountName -Path "/" -Force }
+ Assert-Throws {Remove-AzureRmDataLakeStoreItemAcl -Account $accountName -Path "/" -Force -Default }
+
+ # Delete Data Lake account
+ Assert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
+
+ # Verify that it is gone by trying to get it again
+ Assert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ }
+ finally
+ {
+ # cleanup the resource group that was used in case it still exists. This is a best effort task, we ignore failures here.
+ Invoke-HandledCmdlet -Command {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ Invoke-HandledCmdlet -Command {Remove-AzureRmResourceGroup -Name $resourceGroupName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ }
}
<#
@@ -319,55 +349,65 @@ function Test-NegativeDataLakeStoreAccount
{
param
(
- $resourceGroupName,
- $accountName,
$location = "West US",
$fakeaccountName = "psfakedataLakeaccounttest"
)
- # Creating Account
- $accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location
+ try
+ {
+ # Creating Account
+ $resourceGroupName = Get-ResourceGroupName
+ $accountName = Get-DataLakeStoreAccountName
+ New-AzureRmResourceGroup -Name $resourceGroupName -Location $location
+ $accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location
- Assert-AreEqual $accountName $accountCreated.Name
- Assert-AreEqual $location $accountCreated.Location
- Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountCreated.Type
- Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
-
- # In loop to check if account exists
- for ($i = 0; $i -le 60; $i++)
- {
+ Assert-AreEqual $accountName $accountCreated.Name
+ Assert-AreEqual $location $accountCreated.Location
+ Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountCreated.Type
+ Assert-True {$accountCreated.Id -like "*$resourceGroupName*"}
+
+ # In loop to check if account exists
+ for ($i = 0; $i -le 60; $i++)
+ {
- [array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName
- if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
- {
- Assert-AreEqual $accountName $accountGet[0].Name
- Assert-AreEqual $location $accountGet[0].Location
- Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountGet[0].Type
- Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
- break
- }
-
- Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
- [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
- Assert-False {$i -eq 60} " Data Lake Store account not in succeeded state even after 30 min."
- }
-
- # attempt to recreate the already created account
- Assert-Throws {New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location}
-
- # attempt to update a non-existent account
- $tagsToUpdate = @{"Name" = "TestTag"; "Value" = "TestUpdate"}
- Assert-Throws {Set-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $fakeaccountName -Tags $tagsToUpdate}
-
- # attempt to get a non-existent account
- Assert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $fakeaccountName}
-
- # Delete Data Lake account
- Assert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
-
- # Delete Data Lake account again should throw.
- Assert-Throws {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru}
-
- # Verify that it is gone by trying to get it again
- Assert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ [array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName
+ if ($accountGet[0].Properties.ProvisioningState -like "Succeeded")
+ {
+ Assert-AreEqual $accountName $accountGet[0].Name
+ Assert-AreEqual $location $accountGet[0].Location
+ Assert-AreEqual "Microsoft.DataLakeStore/accounts" $accountGet[0].Type
+ Assert-True {$accountGet[0].Id -like "*$resourceGroupName*"}
+ break
+ }
+
+ Write-Host "account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)"
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)
+ Assert-False {$i -eq 60} " Data Lake Store account not in succeeded state even after 30 min."
+ }
+
+ # attempt to recreate the already created account
+ Assert-Throws {New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location}
+
+ # attempt to update a non-existent account
+ $tagsToUpdate = @{"Name" = "TestTag"; "Value" = "TestUpdate"}
+ Assert-Throws {Set-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $fakeaccountName -Tags $tagsToUpdate}
+
+ # attempt to get a non-existent account
+ Assert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $fakeaccountName}
+
+ # Delete Data Lake account
+ Assert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} "Remove Account failed."
+
+ # Delete Data Lake account again should throw.
+ Assert-Throws {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru}
+
+ # Verify that it is gone by trying to get it again
+ Assert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}
+ }
+ finally
+ {
+ # cleanup the resource group that was used in case it still exists. This is a best effort task, we ignore failures here.
+ Invoke-HandledCmdlet -Command {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ Invoke-HandledCmdlet -Command {Remove-AzureRmResourceGroup -Name $resourceGroupName -Force -ErrorAction SilentlyContinue} -IgnoreFailures
+ }
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/ScenarioTests/AdlsTestsBase.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/ScenarioTests/AdlsTestsBase.cs
index d4002dad1ba5..fb1c474e2dd9 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/ScenarioTests/AdlsTestsBase.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/ScenarioTests/AdlsTestsBase.cs
@@ -12,122 +12,192 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using System.Reflection;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net;
+using Microsoft.Azure.Gallery;
+using Microsoft.Azure.Management.Authorization;
+using Microsoft.Azure.Management.Resources;
+using Microsoft.Azure.Management.DataLake.Store;
+using Microsoft.Azure.Management.Resources.Models;
+using Microsoft.Azure.Subscriptions;
+using Microsoft.Azure.Test.HttpRecorder;
+using Microsoft.Rest.ClientRuntime.Azure.TestFramework;
+using Microsoft.WindowsAzure.Commands.ScenarioTest;
+using LegacyTest = Microsoft.Azure.Test;
+using TestEnvironmentFactory = Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestEnvironmentFactory;
+using TestUtilities = Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities;
using Microsoft.Azure.Commands.Common.Authentication;
-using Microsoft.Azure.Management.DataLake.StoreFileSystem;
namespace Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests
{
- using System;
- using Microsoft.WindowsAzure.Commands.ScenarioTest;
- using Microsoft.Azure.Test;
- using Microsoft.Azure.Management.DataLake.Store;
- using ServiceManagemenet.Common;
- using Microsoft.Azure.Management.Resources;
- using Microsoft.Azure.Management.Resources.Models;
- using System.Net;
-
- public abstract class AdlsTestsBase : TestBase, IDisposable
+ public class AdlsTestsBase
{
- internal string resourceGroupName { get; set; }
- internal string dataLakeAccountName { get; set; }
+ private LegacyTest.CSMTestEnvironmentFactory csmTestFactory;
+ private EnvironmentSetupHelper helper;
+ private const string AuthorizationApiVersion = "2014-07-01-preview";
internal const string resourceGroupLocation = "East US 2";
- private EnvironmentSetupHelper helper;
+ public ResourceManagementClient ResourceManagementClient { get; private set; }
+
+ public SubscriptionClient SubscriptionClient { get; private set; }
+
+ public DataLakeStoreAccountManagementClient DataLakeStoreAccountManagementClient { get; private set; }
+
+ public DataLakeStoreFileSystemManagementClient DataLakeStoreFileSystemManagementClient { get; private set; }
- private DataLakeStoreManagementClient dataLakeStoreManagementClient;
+ public AuthorizationManagementClient AuthorizationManagementClient { get; private set; }
- private DataLakeStoreFileSystemManagementClient dataLakeStoreFileSystemManagementClient;
+ public GalleryClient GalleryClient { get; private set; }
+
+ public static AdlsTestsBase NewInstance
+ {
+ get
+ {
+ return new AdlsTestsBase();
+ }
+ }
- private ResourceManagementClient resourceManagementClient;
- protected AdlsTestsBase()
+ public AdlsTestsBase()
{
helper = new EnvironmentSetupHelper();
- dataLakeStoreManagementClient = GetDataLakeStoreManagementClient();
- dataLakeStoreFileSystemManagementClient = GetDataLakeStoreFileSystemManagementClient();
- resourceManagementClient = GetResourceManagementClient();
- this.resourceGroupName = TestUtilities.GenerateName("datalakerg1");
- this.dataLakeAccountName = TestUtilities.GenerateName("testdatalake1");
}
- protected void SetupManagementClients()
+ public void RunPsTest(params string[] scripts)
{
- helper.SetupManagementClients(dataLakeStoreManagementClient, dataLakeStoreFileSystemManagementClient, resourceManagementClient);
+ var callingClassType = TestUtilities.GetCallingClass(2);
+ var mockName = TestUtilities.GetCurrentMethodName(2);
+
+ RunPsTestWorkflow(
+ () => scripts,
+ // no custom initializer
+ null,
+ // no custom cleanup
+ null,
+ callingClassType,
+ mockName);
}
- protected void RunPowerShellTest(params string[] scripts)
+
+ public void RunPsTestWorkflow(
+ Func scriptBuilder,
+ Action initialize,
+ Action cleanup,
+ string callingClassType,
+ string mockName)
{
- using (UndoContext context = UndoContext.Current)
+ Dictionary d = new Dictionary();
+ d.Add("Microsoft.Authorization", AuthorizationApiVersion);
+ HttpMockServer.Matcher = new PermissiveRecordMatcherWithApiExclusion(false, d);
+
+ using (MockContext context = MockContext.Start(callingClassType, mockName))
{
- context.Start(TestUtilities.GetCallingClass(2), TestUtilities.GetCurrentMethodName(2));
- try
+ this.csmTestFactory = new LegacyTest.CSMTestEnvironmentFactory();
+ if (initialize != null)
{
- SetupManagementClients();
+ initialize(this.csmTestFactory);
+ }
- // Create the resource group
- this.TryRegisterSubscriptionForResource();
- this.TryCreateResourceGroup(this.resourceGroupName, AdlsTestsBase.resourceGroupLocation);
+ SetupManagementClients(context);
- helper.SetupEnvironment(AzureModule.AzureResourceManager);
- helper.SetupModules(AzureModule.AzureResourceManager, "ScenarioTests\\" + this.GetType().Name + ".ps1",
- helper.RMProfileModule, helper.GetRMModulePath(@"AzureRM.DataLakeStore.psd1"));
+ // register the namespace.
+ this.TryRegisterSubscriptionForResource();
+ helper.SetupEnvironment(AzureModule.AzureResourceManager);
- helper.RunPowerShellTest(scripts);
+ var callingClassName = callingClassType
+ .Split(new[] { "." }, StringSplitOptions.RemoveEmptyEntries)
+ .Last();
+ helper.SetupModules(AzureModule.AzureResourceManager, "ScenarioTests\\Common.ps1", "ScenarioTests\\" + callingClassName + ".ps1",
+ helper.RMProfileModule, helper.RMResourceModule, helper.GetRMModulePath(@"AzureRM.DataLakeStore.psd1"));
+
+ try
+ {
+ if (scriptBuilder != null)
+ {
+ var psScripts = scriptBuilder();
+
+ if (psScripts != null)
+ {
+ helper.RunPowerShellTest(psScripts);
+ }
+ }
}
finally
{
- context.UndoAll();
+ if (cleanup != null)
+ {
+ cleanup();
+ }
}
}
}
+ private void SetupManagementClients(MockContext context)
+ {
+ ResourceManagementClient = GetResourceManagementClient();
+ SubscriptionClient = GetSubscriptionClient();
+ DataLakeStoreAccountManagementClient = GetDataLakeStoreAccountManagementClient(context);
+ DataLakeStoreFileSystemManagementClient = GetDataLakeStoreFileSystemManagementClient(context);
+ AuthorizationManagementClient = GetAuthorizationManagementClient();
+ GalleryClient = GetGalleryClient();
+ helper.SetupManagementClients(ResourceManagementClient,
+ SubscriptionClient,
+ DataLakeStoreFileSystemManagementClient,
+ DataLakeStoreAccountManagementClient,
+ AuthorizationManagementClient,
+ GalleryClient
+ );
+ }
+
+
+ private AuthorizationManagementClient GetAuthorizationManagementClient()
+ {
+ return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory);
+ }
+
+ private ResourceManagementClient GetResourceManagementClient()
+ {
+ return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory);
+ }
+
+ private SubscriptionClient GetSubscriptionClient()
+ {
+ return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory);
+ }
+
#region client creation helpers
- protected DataLakeStoreManagementClient GetDataLakeStoreManagementClient()
+ private DataLakeStoreAccountManagementClient GetDataLakeStoreAccountManagementClient(MockContext context)
{
- return TestBase.GetServiceClient(new CSMTestEnvironmentFactory());
+ return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment());
}
- protected DataLakeStoreFileSystemManagementClient GetDataLakeStoreFileSystemManagementClient()
+ private DataLakeStoreFileSystemManagementClient GetDataLakeStoreFileSystemManagementClient(MockContext context)
{
- return GetDataLakeStoreFileSystemServiceClient(new CSMTestEnvironmentFactory());
+ var currentEnvironment = TestEnvironmentFactory.GetTestEnvironment();
+ var toReturn = context.GetServiceClient(currentEnvironment, true);
+ toReturn.AdlsFileSystemDnsSuffix =
+ currentEnvironment.Endpoints.DataLakeStoreServiceUri.OriginalString.Replace("https://", "");
+ return toReturn;
}
- protected ResourceManagementClient GetResourceManagementClient()
+ private GalleryClient GetGalleryClient()
{
- return TestBase.GetServiceClient(new CSMTestEnvironmentFactory());
+ return LegacyTest.TestBase.GetServiceClient(this.csmTestFactory);
}
+
#endregion
#region private helper methods
- private static T GetDataLakeStoreFileSystemServiceClient(
- TestEnvironmentFactory factory)
- where T : class
- {
- TestEnvironment currentEnvironment = factory.GetTestEnvironment();
- T client = null;
-
- ConstructorInfo constructor = typeof(T).GetConstructor(new Type[]
- {
- typeof(SubscriptionCloudCredentials),
- typeof(string)
- });
- client = constructor.Invoke(new object[]
- {
- currentEnvironment.Credentials as SubscriptionCloudCredentials,
- // Have to remove the https:// since this is a suffix
- currentEnvironment.Endpoints.DataLakeStoreServiceUri.OriginalString.Replace("https://","") }) as T;
-
- return AddMockHandler(ref client);
- }
private void TryRegisterSubscriptionForResource(string providerName = "Microsoft.DataLakeStore")
{
- var reg = resourceManagementClient.Providers.Register(providerName);
+ var reg = ResourceManagementClient.Providers.Register(providerName);
ThrowIfTrue(reg == null, "resourceManagementClient.Providers.Register returned null.");
ThrowIfTrue(reg.StatusCode != HttpStatusCode.OK, string.Format("resourceManagementClient.Providers.Register returned with status code {0}", reg.StatusCode));
- var resultAfterRegister = resourceManagementClient.Providers.Get(providerName);
+ var resultAfterRegister = ResourceManagementClient.Providers.Get(providerName);
ThrowIfTrue(resultAfterRegister == null, "resourceManagementClient.Providers.Get returned null.");
ThrowIfTrue(string.IsNullOrEmpty(resultAfterRegister.Provider.Id), "Provider.Id is null or empty.");
ThrowIfTrue(!providerName.Equals(resultAfterRegister.Provider.Namespace), string.Format("Provider name is not equal to {0}.", providerName));
@@ -140,8 +210,8 @@ private void TryRegisterSubscriptionForResource(string providerName = "Microsoft
private void TryCreateResourceGroup(string resourceGroupName, string location)
{
- ResourceGroupCreateOrUpdateResult result = resourceManagementClient.ResourceGroups.CreateOrUpdate(resourceGroupName, new ResourceGroup { Location = location });
- var newlyCreatedGroup = resourceManagementClient.ResourceGroups.Get(resourceGroupName);
+ ResourceGroupCreateOrUpdateResult result = ResourceManagementClient.ResourceGroups.CreateOrUpdate(resourceGroupName, new ResourceGroup { Location = location });
+ var newlyCreatedGroup = ResourceManagementClient.ResourceGroups.Get(resourceGroupName);
ThrowIfTrue(newlyCreatedGroup == null, "resourceManagementClient.ResourceGroups.Get returned null.");
ThrowIfTrue(!resourceGroupName.Equals(newlyCreatedGroup.ResourceGroup.Name), string.Format("resourceGroupName is not equal to {0}", resourceGroupName));
}
@@ -154,8 +224,6 @@ private void ThrowIfTrue(bool condition, string message)
}
}
#endregion
- public void Dispose()
- {
- }
+
}
}
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/ScenarioTests/Common.ps1 b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/ScenarioTests/Common.ps1
new file mode 100644
index 000000000000..c1102a3998e1
--- /dev/null
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/ScenarioTests/Common.ps1
@@ -0,0 +1,58 @@
+# ----------------------------------------------------------------------------------
+#
+# 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.
+# ----------------------------------------------------------------------------------
+
+<#
+.SYNOPSIS
+Gets a Data Lake Store account name to use for testing
+#>
+function Get-DataLakeStoreAccountName
+{
+ return getAssetName
+}
+
+<#
+.SYNOPSIS
+Gets a resource group name for testing.
+#>
+function Get-ResourceGroupName
+{
+ return getAssetName
+}
+
+<#
+.SYNOPSIS
+Executes a cmdlet and enables ignoring of errors if desired
+NOTE: this only catches errors that are thrown. If the command calls to Write-Error
+the user must specify the errorAction to be silent or store the record in an error variable.
+#>
+function Invoke-HandledCmdlet
+{
+ param
+ (
+ [ScriptBlock] $Command,
+ [switch] $IgnoreFailures
+ )
+
+ try
+ {
+ &$Command
+ }
+ catch
+ {
+ if(!$IgnoreFailures)
+ {
+ throw;
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestAdlsAccount.json b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestAdlsAccount.json
index 812404db6a13..c17f37920ce0 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestAdlsAccount.json
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestAdlsAccount.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore/register?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -10,7 +10,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"640"
@@ -28,13 +28,13 @@
"1199"
],
"x-ms-request-id": [
- "dfd5ec9c-1f57-403b-aea6-7b4d083f743b"
+ "ff580c96-3988-49f2-a090-53c7d5e9f779"
],
"x-ms-correlation-request-id": [
- "dfd5ec9c-1f57-403b-aea6-7b4d083f743b"
+ "ff580c96-3988-49f2-a090-53c7d5e9f779"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T211944Z:dfd5ec9c-1f57-403b-aea6-7b4d083f743b"
+ "CENTRALUS:20160226T015933Z:ff580c96-3988-49f2-a090-53c7d5e9f779"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,14 +43,14 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:19:44 GMT"
+ "Fri, 26 Feb 2016 01:59:33 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -58,7 +58,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"640"
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14916"
+ "14999"
],
"x-ms-request-id": [
- "c1ff2b48-7c17-4535-8a44-b43c81acdcb7"
+ "87d02340-0f3a-449c-aa30-fed7945558dc"
],
"x-ms-correlation-request-id": [
- "c1ff2b48-7c17-4535-8a44-b43c81acdcb7"
+ "87d02340-0f3a-449c-aa30-fed7945558dc"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T211945Z:c1ff2b48-7c17-4535-8a44-b43c81acdcb7"
+ "CENTRALUS:20160226T015934Z:87d02340-0f3a-449c-aa30-fed7945558dc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,14 +91,110 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:19:44 GMT"
+ "Fri, 26 Feb 2016 01:59:33 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourcegroups/datalakerg11361?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM2MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5553?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1NTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "2c3e2d98-d531-43b6-ad03-fe314c81a313"
+ ],
+ "x-ms-correlation-request-id": [
+ "2c3e2d98-d531-43b6-ad03-fe314c81a313"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T015945Z:2c3e2d98-d531-43b6-ad03-fe314c81a313"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 01:59:45 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5553?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1NTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-request-id": [
+ "54a65450-2a2d-4206-a873-cc785bfd35d0"
+ ],
+ "x-ms-correlation-request-id": [
+ "54a65450-2a2d-4206-a873-cc785bfd35d0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T020032Z:54a65450-2a2d-4206-a873-cc785bfd35d0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:00:32 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5553?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1NTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
@@ -112,10 +208,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361\",\r\n \"name\": \"datalakerg11361\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553\",\r\n \"name\": \"onesdk5553\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "184"
+ "174"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -130,13 +226,13 @@
"1198"
],
"x-ms-request-id": [
- "15695533-9554-4db0-afa3-4d33e52f0b53"
+ "771ddfcb-ebd2-49cb-8499-41b6745663af"
],
"x-ms-correlation-request-id": [
- "15695533-9554-4db0-afa3-4d33e52f0b53"
+ "771ddfcb-ebd2-49cb-8499-41b6745663af"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T211946Z:15695533-9554-4db0-afa3-4d33e52f0b53"
+ "CENTRALUS:20160226T015949Z:771ddfcb-ebd2-49cb-8499-41b6745663af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,14 +241,14 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:19:45 GMT"
+ "Fri, 26 Feb 2016 01:59:49 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourcegroups/datalakerg11361?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM2MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -160,10 +256,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361\",\r\n \"name\": \"datalakerg11361\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "184"
+ "12"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -175,16 +271,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14915"
+ "14997"
],
"x-ms-request-id": [
- "78c9c8f4-b85d-4cb3-b0e4-7e64d686acbe"
+ "21ce8ffa-168d-412a-b345-d313959afe99"
],
"x-ms-correlation-request-id": [
- "78c9c8f4-b85d-4cb3-b0e4-7e64d686acbe"
+ "21ce8ffa-168d-412a-b345-d313959afe99"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T211946Z:78c9c8f4-b85d-4cb3-b0e4-7e64d686acbe"
+ "CENTRALUS:20160226T015950Z:21ce8ffa-168d-412a-b345-d313959afe99"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,35 +289,31 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:19:46 GMT"
+ "Fri, 26 Feb 2016 01:59:50 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMwMjI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY0MDE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "d58ed11e-d8b4-4eb8-ab93-64a61f6d9c2f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake13022' under resource group 'datalakerg11361' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk6401' under resource group 'onesdk5553' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "169"
+ "157"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -236,13 +328,13 @@
"gateway"
],
"x-ms-request-id": [
- "af53e738-2d88-417b-9373-4bafd589e8a4"
+ "2d2fb50c-d236-40e9-9a61-7fde414ddfac"
],
"x-ms-correlation-request-id": [
- "af53e738-2d88-417b-9373-4bafd589e8a4"
+ "2d2fb50c-d236-40e9-9a61-7fde414ddfac"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212002Z:af53e738-2d88-417b-9373-4bafd589e8a4"
+ "CENTRALUS:20160226T015950Z:2d2fb50c-d236-40e9-9a61-7fde414ddfac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -251,35 +343,31 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:02 GMT"
+ "Fri, 26 Feb 2016 01:59:50 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMwMjI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY0MDE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "88805365-4e39-40f2-a128-739cbf6c3480"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake13022' under resource group 'datalakerg11361' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk6401' under resource group 'onesdk5553' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "169"
+ "157"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -294,13 +382,13 @@
"gateway"
],
"x-ms-request-id": [
- "c776e4ff-68bb-4a9d-bcc6-9d052816e18a"
+ "fb22cafa-0e5d-4b9f-a513-03cfd6601f97"
],
"x-ms-correlation-request-id": [
- "c776e4ff-68bb-4a9d-bcc6-9d052816e18a"
+ "fb22cafa-0e5d-4b9f-a513-03cfd6601f97"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212002Z:c776e4ff-68bb-4a9d-bcc6-9d052816e18a"
+ "CENTRALUS:20160226T015950Z:fb22cafa-0e5d-4b9f-a513-03cfd6601f97"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -309,35 +397,25 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:02 GMT"
+ "Fri, 26 Feb 2016 01:59:50 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMwMjI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY0MDE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13022.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-06T21:20:06.2719158Z\",\r\n \"lastModifiedTime\": \"2015-11-06T21:20:06.2719158Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022\",\r\n \"name\": \"testdatalake13022\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk6401.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T01:59:55.051013Z\",\r\n \"lastModifiedTime\": \"2016-02-26T01:59:55.051013Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401\",\r\n \"name\": \"onesdk6401\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "468"
+ "486"
],
"Content-Type": [
"application/json"
@@ -349,16 +427,16 @@
"no-cache"
],
"x-ms-request-id": [
- "3c86fbf1-a7fc-4d6b-8fc3-6fafa937834b"
+ "32f61929-2817-4be0-b54d-c19f23f85ef6"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14970"
+ "14996"
],
"x-ms-correlation-request-id": [
- "36007941-7ee4-48f2-9acc-37678bd5d3a1"
+ "12e9799f-4777-4b90-9dee-fc187d425b32"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212048Z:36007941-7ee4-48f2-9acc-37678bd5d3a1"
+ "CENTRALUS:20160226T020023Z:12e9799f-4777-4b90-9dee-fc187d425b32"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -367,7 +445,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:47 GMT"
+ "Fri, 26 Feb 2016 02:00:23 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -382,29 +460,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMwMjI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY0MDE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "e7729f96-e87e-4c5f-bfe3-12ac947208bb"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13022.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-06T21:20:06.2719158Z\",\r\n \"lastModifiedTime\": \"2015-11-06T21:20:06.2719158Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022\",\r\n \"name\": \"testdatalake13022\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk6401.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T01:59:55.051013Z\",\r\n \"lastModifiedTime\": \"2016-02-26T01:59:55.051013Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401\",\r\n \"name\": \"onesdk6401\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "468"
+ "486"
],
"Content-Type": [
"application/json"
@@ -416,16 +490,16 @@
"no-cache"
],
"x-ms-request-id": [
- "85490a64-6783-42c5-87ad-e37eb8f8f063"
+ "a988747b-6ec1-48c8-a276-899bba04471f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14969"
+ "14995"
],
"x-ms-correlation-request-id": [
- "dfca823f-e611-4602-8100-fe5c74f48203"
+ "256d02c3-6cbc-4979-bc19-477afce44266"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212048Z:dfca823f-e611-4602-8100-fe5c74f48203"
+ "CENTRALUS:20160226T020024Z:256d02c3-6cbc-4979-bc19-477afce44266"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -434,7 +508,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:47 GMT"
+ "Fri, 26 Feb 2016 02:00:23 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -449,29 +523,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMwMjI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY0MDE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "d4ba70c7-520e-4175-82c1-0126e7db2e27"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13022.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-06T21:20:06.2719158Z\",\r\n \"lastModifiedTime\": \"2015-11-06T21:20:06.2719158Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022\",\r\n \"name\": \"testdatalake13022\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk6401.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T01:59:55.051013Z\",\r\n \"lastModifiedTime\": \"2016-02-26T01:59:55.051013Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401\",\r\n \"name\": \"onesdk6401\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "468"
+ "486"
],
"Content-Type": [
"application/json"
@@ -483,16 +553,16 @@
"no-cache"
],
"x-ms-request-id": [
- "192551f1-0038-4986-a427-42830ae23a80"
+ "c8fc2963-f138-4f12-85a5-59ad60c52819"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14968"
+ "14994"
],
"x-ms-correlation-request-id": [
- "20b6543e-1ed6-46b7-bf23-a6e77b93fb8c"
+ "2cb973f7-ab65-4bff-b98e-17ecd5c92090"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212048Z:20b6543e-1ed6-46b7-bf23-a6e77b93fb8c"
+ "CENTRALUS:20160226T020024Z:2cb973f7-ab65-4bff-b98e-17ecd5c92090"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -501,7 +571,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:48 GMT"
+ "Fri, 26 Feb 2016 02:00:23 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -516,29 +586,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMwMjI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY0MDE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "61c3e496-9614-4074-bbb0-310cae0f4ee4"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13022.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-06T21:20:06.2719158Z\",\r\n \"lastModifiedTime\": \"2015-11-06T21:20:06.2719158Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022\",\r\n \"name\": \"testdatalake13022\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk6401.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T01:59:55.051013Z\",\r\n \"lastModifiedTime\": \"2016-02-26T01:59:55.051013Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401\",\r\n \"name\": \"onesdk6401\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "468"
+ "486"
],
"Content-Type": [
"application/json"
@@ -550,16 +616,16 @@
"no-cache"
],
"x-ms-request-id": [
- "1d1ce7e2-2081-4a94-8a2e-0d9f8c7fe85a"
+ "a83ca3ac-e877-40ff-9598-5cae0bd3aee4"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14967"
+ "14993"
],
"x-ms-correlation-request-id": [
- "f5ab3239-9ccb-416a-b44b-6c9024af53b1"
+ "3507433a-71c6-4ff9-a230-6f10288a34c6"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212048Z:f5ab3239-9ccb-416a-b44b-6c9024af53b1"
+ "CENTRALUS:20160226T020024Z:3507433a-71c6-4ff9-a230-6f10288a34c6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -568,7 +634,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:48 GMT"
+ "Fri, 26 Feb 2016 02:00:23 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -583,29 +649,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMwMjI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY0MDE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "fd8eba8c-a950-4c19-9c27-58d98708f864"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13022.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-06T21:20:06.2719158Z\",\r\n \"lastModifiedTime\": \"2015-11-06T21:20:49.3000664Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022\",\r\n \"name\": \"testdatalake13022\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk6401.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T01:59:55.051013Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:00:25.3599181Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401\",\r\n \"name\": \"onesdk6401\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "490"
+ "509"
],
"Content-Type": [
"application/json"
@@ -617,16 +679,16 @@
"no-cache"
],
"x-ms-request-id": [
- "e46666ef-fa05-4867-ab76-e25ca5316034"
+ "7ce24bc5-521f-4bab-9023-a6f6b6fe0991"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14966"
+ "14990"
],
"x-ms-correlation-request-id": [
- "fd67d77b-ecde-4383-b3bb-aa45ed4478ad"
+ "221b2540-a16c-49d2-b26e-6ad0c3d53ba6"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212051Z:fd67d77b-ecde-4383-b3bb-aa45ed4478ad"
+ "CENTRALUS:20160226T020026Z:221b2540-a16c-49d2-b26e-6ad0c3d53ba6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -635,7 +697,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:50 GMT"
+ "Fri, 26 Feb 2016 02:00:26 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -650,29 +712,79 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMwMjI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY0MDE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "949cd3fc-9aa4-46a2-9694-9a1a67de0c19"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk6401' under resource group 'onesdk5553' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "157"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "941569e7-8853-484b-ac7e-8d12e6d7db6b"
+ ],
+ "x-ms-correlation-request-id": [
+ "941569e7-8853-484b-ac7e-8d12e6d7db6b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T020031Z:941569e7-8853-484b-ac7e-8d12e6d7db6b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:00:31 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY0MDE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "3c596f3f-5693-4d02-8598-f79122e184fe"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake13022' under resource group 'datalakerg11361' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk6401' under resource group 'onesdk5553' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "169"
+ "157"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -687,13 +799,13 @@
"gateway"
],
"x-ms-request-id": [
- "16a474cb-d9dc-40c7-8b9e-741ea18022b5"
+ "35c09d76-5fba-438e-b0fa-60fae52c8b6a"
],
"x-ms-correlation-request-id": [
- "16a474cb-d9dc-40c7-8b9e-741ea18022b5"
+ "35c09d76-5fba-438e-b0fa-60fae52c8b6a"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212054Z:16a474cb-d9dc-40c7-8b9e-741ea18022b5"
+ "CENTRALUS:20160226T020032Z:35c09d76-5fba-438e-b0fa-60fae52c8b6a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -702,44 +814,37 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:53 GMT"
+ "Fri, 26 Feb 2016 02:00:31 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMwMjI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY0MDE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"testdatalake13022\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"onesdk6401\",\r\n \"tags\": {},\r\n \"properties\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "194"
+ "92"
+ ],
+ "x-ms-client-request-id": [
+ "2d10924b-b5fa-4cda-86e1-fe6bd147b870"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-request-id": [
- "b330a2f1-e35a-4f34-8e2b-8dd5b9ed1189"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022\",\r\n \"name\": \"testdatalake13022\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401\",\r\n \"name\": \"onesdk6401\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "407"
+ "354"
],
"Content-Type": [
"application/json"
@@ -754,19 +859,19 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5364c40f-88ca-488a-83ec-36698f0905200?api-version=2015-10-01-preview&expanded=true"
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/548a7d53-11ed-4a2a-b0a1-6447b0915c3b0?api-version=2015-10-01-preview&expanded=true"
],
"x-ms-request-id": [
- "f0fd99c7-a4a7-43ed-aa9b-d1c4f3391423"
+ "8b26dbc8-7ebc-49c7-8e76-c3f0101ebfde"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "6eadd291-fe1f-4349-9e4b-8d9df13db5c4"
+ "5e847a6e-032a-40db-ba5b-99022584702c"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212006Z:6eadd291-fe1f-4349-9e4b-8d9df13db5c4"
+ "CENTRALUS:20160226T015953Z:5e847a6e-032a-40db-ba5b-99022584702c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -775,10 +880,10 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:05 GMT"
+ "Fri, 26 Feb 2016 01:59:52 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourcegroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022/operationresults/0?api-version=2015-10-01-preview"
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401/operationresults/0?api-version=2015-10-01-preview"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -793,22 +898,19 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5364c40f-88ca-488a-83ec-36698f0905200?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzUzNjRjNDBmLTg4Y2EtNDg4YS04M2VjLTM2Njk4ZjA5MDUyMDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/548a7d53-11ed-4a2a-b0a1-6447b0915c3b0?api-version=2015-10-01-preview&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzU0OGE3ZDUzLTExZWQtNGEyYS1iMGExLTY0NDdiMDkxNWMzYjA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.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"
@@ -820,16 +922,16 @@
"no-cache"
],
"x-ms-request-id": [
- "2e805acc-529c-41fb-9dbd-178b8e154a50"
+ "088741c8-3012-4176-808d-79d356a0cad8"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14974"
+ "14997"
],
"x-ms-correlation-request-id": [
- "8c45c42d-7b88-4760-becc-7d3ee9cf8823"
+ "54083be6-d554-4b48-92ae-67aaf3fb5890"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212006Z:8c45c42d-7b88-4760-becc-7d3ee9cf8823"
+ "CENTRALUS:20160226T020023Z:54083be6-d554-4b48-92ae-67aaf3fb5890"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -838,7 +940,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:06 GMT"
+ "Fri, 26 Feb 2016 02:00:23 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -853,22 +955,31 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5364c40f-88ca-488a-83ec-36698f0905200?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzUzNjRjNDBmLTg4Y2EtNDg4YS04M2VjLTM2Njk4ZjA5MDUyMDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY0MDE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"onesdk6401\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"properties\": {}\r\n}",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "125"
+ ],
+ "x-ms-client-request-id": [
+ "73a929f7-507b-4ee2-981a-e4361feb46ce"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk6401.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T01:59:55.051013Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:00:25.3599181Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401\",\r\n \"name\": \"onesdk6401\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "509"
],
"Content-Type": [
"application/json"
@@ -880,16 +991,16 @@
"no-cache"
],
"x-ms-request-id": [
- "4b7ff5ca-7262-4c5b-b792-c22fa526c426"
+ "ca9f4b98-af67-4fde-9c93-903e24e93d63"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14973"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
],
"x-ms-correlation-request-id": [
- "3016a17f-a198-45a6-b213-9fd28d7a12e9"
+ "c18a1d8f-7c6c-412f-bb1f-522f0419a5ad"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212017Z:3016a17f-a198-45a6-b213-9fd28d7a12e9"
+ "CENTRALUS:20160226T020026Z:c18a1d8f-7c6c-412f-bb1f-522f0419a5ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -898,7 +1009,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:16 GMT"
+ "Fri, 26 Feb 2016 02:00:25 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -913,22 +1024,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5364c40f-88ca-488a-83ec-36698f0905200?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzUzNjRjNDBmLTg4Y2EtNDg4YS04M2VjLTM2Njk4ZjA5MDUyMDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "d1b176aa-a55c-4656-9552-f27d37d40107"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk6401.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T01:59:55.051013Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:00:25.3599181Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401\",\r\n \"name\": \"onesdk6401\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "475"
],
"Content-Type": [
"application/json"
@@ -940,16 +1054,16 @@
"no-cache"
],
"x-ms-request-id": [
- "09b89868-0755-42c1-a636-cd71709a11a1"
+ "9f6b60ad-4f35-48aa-9fc2-e5610362dbcc"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14972"
+ "14992"
],
"x-ms-correlation-request-id": [
- "0281f344-287c-4479-9da9-83c9965ac295"
+ "74da9348-d198-43d2-bc8f-a56a31a97a56"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212032Z:0281f344-287c-4479-9da9-83c9965ac295"
+ "CENTRALUS:20160226T020026Z:74da9348-d198-43d2-bc8f-a56a31a97a56"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -958,7 +1072,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:31 GMT"
+ "Fri, 26 Feb 2016 02:00:25 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -973,22 +1087,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5364c40f-88ca-488a-83ec-36698f0905200?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzUzNjRjNDBmLTg4Y2EtNDg4YS04M2VjLTM2Njk4ZjA5MDUyMDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/accounts?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "c705a498-d04b-4fea-82b7-2f305a3fa123"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17772.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-23T02:13:55.0992824Z\",\r\n \"lastModifiedTime\": \"2016-02-23T02:13:55.0992824Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12687/providers/Microsoft.DataLakeStore/accounts/testadlfs17772\",\r\n \"name\": \"testadlfs17772\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk6401.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T01:59:55.051013Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:00:25.3599181Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401\",\r\n \"name\": \"onesdk6401\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk2612.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-25T22:13:59.3488032Z\",\r\n \"lastModifiedTime\": \"2016-02-25T22:13:59.3488032Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk7034/providers/Microsoft.DataLakeStore/accounts/onesdk2612\",\r\n \"name\": \"onesdk2612\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13758.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-01-27T23:37:46.4920191Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:37:46.4920191Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12048/providers/Microsoft.DataLakeStore/accounts/testdatalake13758\",\r\n \"name\": \"testdatalake13758\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake27879.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-01-27T23:38:19.8556695Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:38:19.8556695Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12048/providers/Microsoft.DataLakeStore/accounts/testdatalake27879\",\r\n \"name\": \"testdatalake27879\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake1187.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-01-27T23:27:31.385199Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:27:31.385199Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18569/providers/Microsoft.DataLakeStore/accounts/testdatalake1187\",\r\n \"name\": \"testdatalake1187\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake21234.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-01-27T23:28:02.8597522Z\",\r\n \"lastModifiedTime\": \"2016-01-27T23:28:02.8597522Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18569/providers/Microsoft.DataLakeStore/accounts/testdatalake21234\",\r\n \"name\": \"testdatalake21234\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "22"
+ "3239"
],
"Content-Type": [
"application/json"
@@ -1000,16 +1117,16 @@
"no-cache"
],
"x-ms-request-id": [
- "e773cca6-8799-4d7d-9137-b7a9cc7454d4"
+ "adde6250-d8cd-427f-94d9-a1fb6436b50e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14971"
+ "14991"
],
"x-ms-correlation-request-id": [
- "e279c1c6-1af3-4d65-80a5-88011f3d1f22"
+ "cb18b985-a029-44de-bf26-d46974249901"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212048Z:e279c1c6-1af3-4d65-80a5-88011f3d1f22"
+ "CENTRALUS:20160226T020026Z:cb18b985-a029-44de-bf26-d46974249901"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1018,7 +1135,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:47 GMT"
+ "Fri, 26 Feb 2016 02:00:25 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1033,41 +1150,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMwMjI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"testdatalake13022\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"properties\": {\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5553/providers/Microsoft.DataLakeStore/accounts/onesdk6401?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazU1NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY0MDE/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "227"
+ "x-ms-client-request-id": [
+ "d5f27518-a60f-4435-9719-2bd2b236d09f"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-request-id": [
- "45d5e48d-8b0a-40ee-aa4c-d462c3a09d42"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13022.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-06T21:20:06.2719158Z\",\r\n \"lastModifiedTime\": \"2015-11-06T21:20:49.3000664Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022\",\r\n \"name\": \"testdatalake13022\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "536"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -1076,16 +1177,16 @@
"no-cache"
],
"x-ms-request-id": [
- "b1cd0f3c-1bf5-4e94-9dbb-a6c22e464d71"
+ "68a5a6cc-8c02-4775-846a-21f5f34eb3a9"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-correlation-request-id": [
- "080b39b2-e512-496b-b6b4-afde27b432a1"
+ "a5ab1a39-e994-468f-84ed-eaf0704a04ae"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212051Z:080b39b2-e512-496b-b6b4-afde27b432a1"
+ "CENTRALUS:20160226T020031Z:a5ab1a39-e994-468f-84ed-eaf0704a04ae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1094,7 +1195,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:50 GMT"
+ "Fri, 26 Feb 2016 02:00:31 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -1109,32 +1210,73 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5553?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1NTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "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": [
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "3ace34f0-60c5-4277-bf93-8fa24c16eafe"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ace34f0-60c5-4277-bf93-8fa24c16eafe"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T020033Z:3ace34f0-60c5-4277-bf93-8fa24c16eafe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:00:33 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTUzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTUzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFV6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13022.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-06T21:20:06.2719158Z\",\r\n \"lastModifiedTime\": \"2015-11-06T21:20:49.3000664Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022\",\r\n \"name\": \"testdatalake13022\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "502"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -1142,17 +1284,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "1b470731-29ac-4f67-b70f-557e042127d6"
+ "Retry-After": [
+ "15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14965"
+ "14995"
+ ],
+ "x-ms-request-id": [
+ "1cdc339b-e935-43e5-b888-136fc89ae921"
],
"x-ms-correlation-request-id": [
- "ecd6bfb9-fce7-42d5-bb16-1023532afcca"
+ "1cdc339b-e935-43e5-b888-136fc89ae921"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212051Z:ecd6bfb9-fce7-42d5-bb16-1023532afcca"
+ "CENTRALUS:20160226T020034Z:1cdc339b-e935-43e5-b888-136fc89ae921"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1161,47 +1306,31 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:50 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
+ "Fri, 26 Feb 2016 02:00:34 GMT"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTUzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore/accounts?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTUzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFV6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"datalake019220.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-06T21:20:01.8097534Z\",\r\n \"lastModifiedTime\": \"2015-11-06T21:20:01.8097534Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/abarg18480/providers/Microsoft.DataLakeStore/accounts/datalake019220\",\r\n \"name\": \"datalake019220\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/abarg18480/providers/Microsoft.DataLakeStore/accounts/datalake02338\",\r\n \"name\": \"datalake02338\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"accountcrudtest96965bcb.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-10-27T22:34:14.2568106Z\",\r\n \"lastModifiedTime\": \"2015-10-27T22:34:14.2568106Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"Key1\": \"Value1\",\r\n \"Key2\": \"CRUD Test\"\r\n },\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/CrudOperationScenarios/providers/Microsoft.DataLakeStore/accounts/accountcrudtest96965bcb\",\r\n \"name\": \"accountcrudtest96965bcb\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13022.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-06T21:20:06.2719158Z\",\r\n \"lastModifiedTime\": \"2015-11-06T21:20:49.3000664Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"TestTag\": \"TestUpdate\"\r\n },\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022\",\r\n \"name\": \"testdatalake13022\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"datainsights.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-06-25T00:54:58.4601816\",\r\n \"lastModifiedTime\": \"2015-06-25T00:54:58.4601816\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/InsightServices/providers/Microsoft.DataLakeStore/accounts/datainsights\",\r\n \"name\": \"datainsights\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"datainsightsadhoc.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-08-18T23:14:30.6024852\",\r\n \"lastModifiedTime\": \"2015-08-18T23:14:30.6024852\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/InsightServices/providers/Microsoft.DataLakeStore/accounts/datainsightsadhoc\",\r\n \"name\": \"datainsightsadhoc\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"mdisystemlogs.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-08-13T21:59:59.7926259\",\r\n \"lastModifiedTime\": \"2015-08-13T21:59:59.7926259\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/InsightServices/providers/Microsoft.DataLakeStore/accounts/mdisystemlogs\",\r\n \"name\": \"mdisystemlogs\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13236.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-04T18:25:26.174323Z\",\r\n \"lastModifiedTime\": \"2015-11-04T18:25:26.174323Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/rgaba18795/providers/Microsoft.DataLakeStore/accounts/testdatalake13236\",\r\n \"name\": \"testdatalake13236\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake25225.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-04T18:26:09.9250048Z\",\r\n \"lastModifiedTime\": \"2015-11-04T18:26:09.9250048Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/rgaba18795/providers/Microsoft.DataLakeStore/accounts/testdatalake25225\",\r\n \"name\": \"testdatalake25225\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "4158"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -1209,17 +1338,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "2c7bb265-d7ab-444a-b13c-29cdb61e4364"
+ "Retry-After": [
+ "15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14964"
+ "14994"
+ ],
+ "x-ms-request-id": [
+ "0f3e954e-76a1-4fe1-b985-29719e37e35d"
],
"x-ms-correlation-request-id": [
- "d9d26d2f-60c5-4079-8a25-0701d0336d4f"
+ "0f3e954e-76a1-4fe1-b985-29719e37e35d"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212051Z:d9d26d2f-60c5-4079-8a25-0701d0336d4f"
+ "CENTRALUS:20160226T020049Z:0f3e954e-76a1-4fe1-b985-29719e37e35d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1228,38 +1360,25 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:50 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
+ "Fri, 26 Feb 2016 02:00:48 GMT"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTUzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg11361/providers/Microsoft.DataLakeStore/accounts/testdatalake13022?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMwMjI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTUzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFV6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
"ResponseBody": "",
@@ -1273,17 +1392,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "2ecda202-d4fb-4408-80a3-5f09be51104c"
+ "Retry-After": [
+ "15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "x-ms-request-id": [
+ "d471bb6d-efd5-46e1-a8cf-47d3918a7558"
],
"x-ms-correlation-request-id": [
- "1dde5118-bf09-46d2-bdc2-eb336eb552c9"
+ "d471bb6d-efd5-46e1-a8cf-47d3918a7558"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212053Z:1dde5118-bf09-46d2-bdc2-eb336eb552c9"
+ "CENTRALUS:20160226T020104Z:d471bb6d-efd5-46e1-a8cf-47d3918a7558"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1292,23 +1414,70 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:20:53 GMT"
+ "Fri, 26 Feb 2016 02:01:03 GMT"
],
- "Server": [
- "Microsoft-IIS/8.5"
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTUzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTUzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVFV6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-request-id": [
+ "5ff27ea0-066e-4e8c-a2c1-5de70f14c386"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ff27ea0-066e-4e8c-a2c1-5de70f14c386"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T020119Z:5ff27ea0-066e-4e8c-a2c1-5de70f14c386"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:01:18 GMT"
]
},
"StatusCode": 200
}
],
- "Names": {},
+ "Names": {
+ "Test-DataLakeStoreAccount": [
+ "onesdk5553",
+ "onesdk6401"
+ ]
+ },
"Variables": {
- "SubscriptionId": "045c28ea-c686-462f-9081-33c34e871ba3"
+ "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestAdlsFileSystem.json b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestAdlsFileSystem.json
index bed0142cf4b8..bdabc7f1b95a 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestAdlsFileSystem.json
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestAdlsFileSystem.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/register?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -10,7 +10,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"640"
@@ -25,16 +25,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-request-id": [
- "7ea1c80a-a1d0-4287-96ad-6c030cdc44d2"
+ "49c00c5a-7630-4c1d-a035-f6cbd07ac1d1"
],
"x-ms-correlation-request-id": [
- "7ea1c80a-a1d0-4287-96ad-6c030cdc44d2"
+ "49c00c5a-7630-4c1d-a035-f6cbd07ac1d1"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T231922Z:7ea1c80a-a1d0-4287-96ad-6c030cdc44d2"
+ "CENTRALUS:20160226T020123Z:49c00c5a-7630-4c1d-a035-f6cbd07ac1d1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,14 +43,14 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:19:21 GMT"
+ "Fri, 26 Feb 2016 02:01:22 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -58,7 +58,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"640"
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "14999"
],
"x-ms-request-id": [
- "788d9d7c-8a0d-4a00-8401-e6096f6aef85"
+ "11449bfa-e530-4ac7-94eb-10d5a6a16864"
],
"x-ms-correlation-request-id": [
- "788d9d7c-8a0d-4a00-8401-e6096f6aef85"
+ "11449bfa-e530-4ac7-94eb-10d5a6a16864"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T231922Z:788d9d7c-8a0d-4a00-8401-e6096f6aef85"
+ "CENTRALUS:20160226T020123Z:11449bfa-e530-4ac7-94eb-10d5a6a16864"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,31 +91,25 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:19:21 GMT"
+ "Fri, 26 Feb 2016 02:01:22 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/datalakerg1316?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk702?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazcwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg1316\",\r\n \"name\": \"datalakerg1316\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "182"
+ "101"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,17 +120,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
],
"x-ms-request-id": [
- "ffc40fe6-9e70-46eb-9282-6cd970c1aeb8"
+ "49fbff88-2afb-46d0-9359-a3a7345a51dd"
],
"x-ms-correlation-request-id": [
- "ffc40fe6-9e70-46eb-9282-6cd970c1aeb8"
+ "49fbff88-2afb-46d0-9359-a3a7345a51dd"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T231923Z:ffc40fe6-9e70-46eb-9282-6cd970c1aeb8"
+ "CENTRALUS:20160226T020128Z:49fbff88-2afb-46d0-9359-a3a7345a51dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,28 +142,25 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:19:22 GMT"
+ "Fri, 26 Feb 2016 02:01:28 GMT"
]
},
- "StatusCode": 201
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/datalakerg1316?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk702?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazcwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg1316\",\r\n \"name\": \"datalakerg1316\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "182"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "0"
],
"Expires": [
"-1"
@@ -175,16 +169,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14952"
+ "14996"
],
"x-ms-request-id": [
- "a5b3fadb-6bd5-4e72-8c95-55f6da62ea50"
+ "833232ef-b495-4bc0-acb5-b6f60a6c5554"
],
"x-ms-correlation-request-id": [
- "a5b3fadb-6bd5-4e72-8c95-55f6da62ea50"
+ "833232ef-b495-4bc0-acb5-b6f60a6c5554"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T231923Z:a5b3fadb-6bd5-4e72-8c95-55f6da62ea50"
+ "CENTRALUS:20160226T020214Z:833232ef-b495-4bc0-acb5-b6f60a6c5554"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,35 +187,31 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:19:23 GMT"
+ "Fri, 26 Feb 2016 02:02:13 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 204
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg1316/providers/Microsoft.DataLakeStore/accounts/testdatalake18228?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0ZGF0YWxha2UxODIyOD9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk702?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazcwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "31"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake18228' under resource group 'datalakerg1316' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk702\",\r\n \"name\": \"onesdk702\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "168"
+ "172"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -232,17 +222,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
],
"x-ms-request-id": [
- "10ea939a-742f-4f7f-a50c-f2317bb352a5"
+ "7dc9828f-b9af-4d39-865e-ab6cf198505c"
],
"x-ms-correlation-request-id": [
- "10ea939a-742f-4f7f-a50c-f2317bb352a5"
+ "7dc9828f-b9af-4d39-865e-ab6cf198505c"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T231938Z:10ea939a-742f-4f7f-a50c-f2317bb352a5"
+ "CENTRALUS:20160226T020130Z:7dc9828f-b9af-4d39-865e-ab6cf198505c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -251,35 +241,25 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:19:38 GMT"
+ "Fri, 26 Feb 2016 02:01:29 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg1316/providers/Microsoft.DataLakeStore/accounts/testdatalake18228?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0ZGF0YWxha2UxODIyOD9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk702/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazcwMi9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake18228' under resource group 'datalakerg1316' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "168"
+ "12"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -290,17 +270,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
],
"x-ms-request-id": [
- "89b02806-41c2-4c3d-8c62-7ed4568e7df9"
+ "c47025e8-aad0-47c5-b15c-498dddac97d6"
],
"x-ms-correlation-request-id": [
- "89b02806-41c2-4c3d-8c62-7ed4568e7df9"
+ "c47025e8-aad0-47c5-b15c-498dddac97d6"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T231938Z:89b02806-41c2-4c3d-8c62-7ed4568e7df9"
+ "CENTRALUS:20160226T020130Z:c47025e8-aad0-47c5-b15c-498dddac97d6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -309,38 +289,34 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:19:38 GMT"
+ "Fri, 26 Feb 2016 02:01:30 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg1316/providers/Microsoft.DataLakeStore/accounts/testdatalake18228?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0ZGF0YWxha2UxODIyOD9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk702/providers/Microsoft.DataLakeStore/accounts/onesdk3575?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvb25lc2RrMzU3NT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "0f25f76d-7329-4683-a6a2-6c02b4559684"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18228.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-19T23:19:42.2678485Z\",\r\n \"lastModifiedTime\": \"2015-11-19T23:19:42.2678485Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg1316/providers/Microsoft.DataLakeStore/accounts/testdatalake18228\",\r\n \"name\": \"testdatalake18228\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk3575' under resource group 'onesdk702' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "467"
+ "156"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -348,17 +324,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "a6e8bfea-6f4a-4022-8b45-b8a39d3b10e8"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14934"
+ "x-ms-request-id": [
+ "1aee2f14-a989-44b1-a946-ed8c0e976ee4"
],
"x-ms-correlation-request-id": [
- "12912db8-a34b-4d01-94c3-8a76cfba6a04"
+ "1aee2f14-a989-44b1-a946-ed8c0e976ee4"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T232023Z:12912db8-a34b-4d01-94c3-8a76cfba6a04"
+ "WESTUS:20160226T020131Z:1aee2f14-a989-44b1-a946-ed8c0e976ee4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -367,47 +343,34 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:22 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:01:30 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg1316/providers/Microsoft.DataLakeStore/accounts/testdatalake18228?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0ZGF0YWxha2UxODIyOD9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk702/providers/Microsoft.DataLakeStore/accounts/onesdk3575?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvb25lc2RrMzU3NT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "2c2308e5-ab03-404b-bc69-4ae9e91ce46b"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18228.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-19T23:19:42.2678485Z\",\r\n \"lastModifiedTime\": \"2015-11-19T23:19:42.2678485Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg1316/providers/Microsoft.DataLakeStore/accounts/testdatalake18228\",\r\n \"name\": \"testdatalake18228\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk3575' under resource group 'onesdk702' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "467"
+ "156"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -415,17 +378,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "1a10351e-a01a-4575-863d-3ee27d734c0a"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14933"
+ "x-ms-request-id": [
+ "30278663-d5da-4efc-883d-90c5576e34c3"
],
"x-ms-correlation-request-id": [
- "cb84aa9d-14ff-4932-bbc2-99fa4831d250"
+ "30278663-d5da-4efc-883d-90c5576e34c3"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T232023Z:cb84aa9d-14ff-4932-bbc2-99fa4831d250"
+ "WESTUS:20160226T020131Z:30278663-d5da-4efc-883d-90c5576e34c3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -434,44 +397,25 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:22 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:01:30 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg1316/providers/Microsoft.DataLakeStore/accounts/testdatalake18228?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0ZGF0YWxha2UxODIyOD9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk702/providers/Microsoft.DataLakeStore/accounts/onesdk3575?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvb25lc2RrMzU3NT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18228.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-19T23:19:42.2678485Z\",\r\n \"lastModifiedTime\": \"2015-11-19T23:19:42.2678485Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg1316/providers/Microsoft.DataLakeStore/accounts/testdatalake18228\",\r\n \"name\": \"testdatalake18228\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk3575.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:01:35.3733177Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:01:35.3733177Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk702/providers/Microsoft.DataLakeStore/accounts/onesdk3575\",\r\n \"name\": \"onesdk3575\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "467"
+ "487"
],
"Content-Type": [
"application/json"
@@ -483,16 +427,16 @@
"no-cache"
],
"x-ms-request-id": [
- "173f8513-0e35-48a0-b779-52d74867348e"
+ "0d3cb611-ada5-4f06-a407-40f68b2f4183"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14932"
+ "14996"
],
"x-ms-correlation-request-id": [
- "0c630000-adec-4c3c-8065-d1da4c1652cd"
+ "72189b09-716a-4b8e-9df9-410f15c6bad0"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T232037Z:0c630000-adec-4c3c-8065-d1da4c1652cd"
+ "WESTUS:20160226T020204Z:72189b09-716a-4b8e-9df9-410f15c6bad0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -501,7 +445,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:36 GMT"
+ "Fri, 26 Feb 2016 02:02:03 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -516,32 +460,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg1316/providers/Microsoft.DataLakeStore/accounts/testdatalake18228?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0ZGF0YWxha2UxODIyOD9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk702/providers/Microsoft.DataLakeStore/accounts/onesdk3575?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvb25lc2RrMzU3NT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "b5fd58a5-b9ed-46d6-b75f-d3ddad017bd2"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake18228' under resource group 'datalakerg1316' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk3575.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:01:35.3733177Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:01:35.3733177Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk702/providers/Microsoft.DataLakeStore/accounts/onesdk3575\",\r\n \"name\": \"onesdk3575\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "168"
+ "487"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -549,17 +489,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
- ],
"x-ms-request-id": [
- "2bedf733-7724-45d9-a4ef-06b22e138697"
+ "b1e83167-8f72-4869-a788-2df8a9f8569e"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
],
"x-ms-correlation-request-id": [
- "2bedf733-7724-45d9-a4ef-06b22e138697"
+ "6a1e9173-3d97-4ffb-ae5a-4fd08f30a40e"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T232039Z:2bedf733-7724-45d9-a4ef-06b22e138697"
+ "WESTUS:20160226T020204Z:6a1e9173-3d97-4ffb-ae5a-4fd08f30a40e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -568,44 +508,40 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:39 GMT"
+ "Fri, 26 Feb 2016 02:02:04 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg1316/providers/Microsoft.DataLakeStore/accounts/testdatalake18228?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0ZGF0YWxha2UxODIyOD9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"testdatalake18228\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk702/providers/Microsoft.DataLakeStore/accounts/onesdk3575?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvb25lc2RrMzU3NT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "194"
+ "x-ms-client-request-id": [
+ "ff2f323f-a237-4467-8e99-f014ccc35908"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-request-id": [
- "ed1d628d-a5c7-468d-9d42-52907f5597fc"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg1316/providers/Microsoft.DataLakeStore/accounts/testdatalake18228\",\r\n \"name\": \"testdatalake18228\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk3575.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:01:35.3733177Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:01:35.3733177Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk702/providers/Microsoft.DataLakeStore/accounts/onesdk3575\",\r\n \"name\": \"onesdk3575\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "406"
+ "487"
],
"Content-Type": [
"application/json"
@@ -616,23 +552,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6f6117ec-3dfd-4c12-90a0-e38171f4c58e0?api-version=2015-10-01-preview&expanded=true"
- ],
"x-ms-request-id": [
- "63504317-234e-43ab-821e-5744e628be8c"
+ "196270de-7a65-40a0-a14b-31e7c8e1506e"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
],
"x-ms-correlation-request-id": [
- "c6799033-16c9-4892-a1c3-69c4d62d35b3"
+ "79fcf5ca-91a3-4660-97d3-aafaae7b63cb"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T231941Z:c6799033-16c9-4892-a1c3-69c4d62d35b3"
+ "WESTUS:20160226T020213Z:79fcf5ca-91a3-4660-97d3-aafaae7b63cb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -641,10 +571,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:19:40 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/datalakerg1316/providers/Microsoft.DataLakeStore/accounts/testdatalake18228/operationresults/0?api-version=2015-10-01-preview"
+ "Fri, 26 Feb 2016 02:02:12 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -656,28 +583,31 @@
"ASP.NET"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6f6117ec-3dfd-4c12-90a0-e38171f4c58e0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzZmNjExN2VjLTNkZmQtNGMxMi05MGEwLWUzODE3MWY0YzU4ZTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk702/providers/Microsoft.DataLakeStore/accounts/onesdk3575?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvb25lc2RrMzU3NT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "8cd5f1ed-7784-403d-b2a5-0a7b910d9932"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk3575' under resource group 'onesdk702' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "156"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -685,17 +615,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "c6333e7a-15a6-4ba8-aa01-01abbc2cf6c3"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14936"
+ "x-ms-request-id": [
+ "6f51807d-e8c8-4447-9ca1-fe70cc952a57"
],
"x-ms-correlation-request-id": [
- "107f7892-5587-41f8-98ff-f9b304f936d6"
+ "6f51807d-e8c8-4447-9ca1-fe70cc952a57"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T231941Z:107f7892-5587-41f8-98ff-f9b304f936d6"
+ "WESTUS:20160226T020214Z:6f51807d-e8c8-4447-9ca1-fe70cc952a57"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -704,40 +634,34 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:19:41 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:02:13 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6f6117ec-3dfd-4c12-90a0-e38171f4c58e0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzZmNjExN2VjLTNkZmQtNGMxMi05MGEwLWUzODE3MWY0YzU4ZTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk702/providers/Microsoft.DataLakeStore/accounts/onesdk3575?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvb25lc2RrMzU3NT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "472856d3-18db-4e59-96c6-1705bc13f14d"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk3575' under resource group 'onesdk702' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "156"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -745,17 +669,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "247f39d6-c3b6-4c3f-94c9-01df1752b36a"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14935"
+ "x-ms-request-id": [
+ "ced4aba7-4a57-4673-90c0-91db3dc2363d"
],
"x-ms-correlation-request-id": [
- "9fdd91f2-ef3d-47e2-bcc6-cde1096e48f8"
+ "ced4aba7-4a57-4673-90c0-91db3dc2363d"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T231952Z:9fdd91f2-ef3d-47e2-bcc6-cde1096e48f8"
+ "WESTUS:20160226T020214Z:ced4aba7-4a57-4673-90c0-91db3dc2363d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -764,37 +688,37 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:19:51 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:02:13 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6f6117ec-3dfd-4c12-90a0-e38171f4c58e0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzZmNjExN2VjLTNkZmQtNGMxMi05MGEwLWUzODE3MWY0YzU4ZTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk702/providers/Microsoft.DataLakeStore/accounts/onesdk3575?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvb25lc2RrMzU3NT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"onesdk3575\",\r\n \"tags\": {},\r\n \"properties\": {}\r\n}",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "92"
+ ],
+ "x-ms-client-request-id": [
+ "d7c4cd65-36e1-4cef-bb6c-7fbbd194ae73"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk702/providers/Microsoft.DataLakeStore/accounts/onesdk3575\",\r\n \"name\": \"onesdk3575\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "353"
],
"Content-Type": [
"application/json"
@@ -805,17 +729,23 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/931cf80c-04b1-40ca-9426-60dc01b7eeec0?api-version=2015-10-01-preview&expanded=true"
+ ],
"x-ms-request-id": [
- "8b6d981c-f990-4c55-b18d-c6d5c139acde"
+ "40c628b1-b186-4268-ac3b-21a9a5c4791b"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14936"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "07d5f6a0-f544-486b-80c0-3b639d6b54d3"
+ "ba8f739f-9b4f-43be-9e28-3f30f6e2f177"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T232007Z:07d5f6a0-f544-486b-80c0-3b639d6b54d3"
+ "WESTUS:20160226T020134Z:ba8f739f-9b4f-43be-9e28-3f30f6e2f177"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -824,7 +754,10 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:07 GMT"
+ "Fri, 26 Feb 2016 02:01:33 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk702/providers/Microsoft.DataLakeStore/accounts/onesdk3575/operationresults/0?api-version=2015-10-01-preview"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -836,19 +769,16 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6f6117ec-3dfd-4c12-90a0-e38171f4c58e0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzZmNjExN2VjLTNkZmQtNGMxMi05MGEwLWUzODE3MWY0YzU4ZTA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/931cf80c-04b1-40ca-9426-60dc01b7eeec0?api-version=2015-10-01-preview&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzkzMWNmODBjLTA0YjEtNDBjYS05NDI2LTYwZGMwMWI3ZWVlYzA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -866,16 +796,16 @@
"no-cache"
],
"x-ms-request-id": [
- "487cb554-b9ab-4738-a840-f652ddbb365e"
+ "d15c2dc3-8777-4026-bea8-69e94e200e33"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14935"
+ "14997"
],
"x-ms-correlation-request-id": [
- "6f2d03cc-1bc6-4f27-9356-59118db41a5c"
+ "227a8371-ec0a-4390-a18f-30b7723b7696"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T232023Z:6f2d03cc-1bc6-4f27-9356-59118db41a5c"
+ "WESTUS:20160226T020204Z:227a8371-ec0a-4390-a18f-30b7723b7696"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -884,7 +814,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:22 GMT"
+ "Fri, 26 Feb 2016 02:02:03 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -904,21 +834,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "819346d0-a576-442f-8d80-cb57b9be2618"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder [730b8447ac4944a896543a2c2fe01909]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder [826d0a0efb8c4f5b962be6c13b14e502]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"198"
@@ -933,10 +862,10 @@
"no-cache"
],
"x-ms-request-id": [
- "730b8447-ac49-44a8-9654-3a2c2fe01909"
+ "826d0a0e-fb8c-4f5b-962b-e6c13b14e502"
],
"Server-Perf": [
- "[730b8447ac4944a896543a2c2fe01909][ AuthTime::1763.81325819592::PostAuthTime::1099102.01204731 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:099 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:099 ms]%0a"
+ "[826d0a0efb8c4f5b962be6c13b14e502][ AuthTime::1707.3575477008::PostAuthTime::31412.8982479911 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:109 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:110 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -948,10 +877,10 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:25 GMT"
+ "Fri, 26 Feb 2016 02:02:05 GMT"
],
"Set-Cookie": [
- "UserPrincipalSession=c02e6f2b-b914-46d3-8bef-03713798264f; path=/; secure; HttpOnly"
+ "UserPrincipalSession=4a407aa9-9b23-4d4f-a6f7-968656aba7a3; path=/; secure; HttpOnly"
]
},
"StatusCode": 404
@@ -962,21 +891,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "e868fa84-65c3-45e7-9812-fcb41b12218a"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1447975225603,\r\n \"modificationTime\": 1447975225603,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1456452125496,\r\n \"modificationTime\": 1456452125496,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"227"
@@ -991,10 +919,10 @@
"no-cache"
],
"x-ms-request-id": [
- "695ee48c-ba32-49ad-89c3-f93752e3985c"
+ "7c2b7322-6557-47b8-966e-c2e7de2dc553"
],
"Server-Perf": [
- "[695ee48cba3249ad89c3f93752e3985c][ AuthTime::821.601665614538::PostAuthTime::198.450376285864 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:137 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:137 ms]%0a"
+ "[7c2b7322655747b8966ec2e7de2dc553][ AuthTime::819.035496955669::PostAuthTime::190.751870309258 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:066 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:066 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1006,7 +934,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:25 GMT"
+ "Fri, 26 Feb 2016 02:02:05 GMT"
]
},
"StatusCode": 200
@@ -1017,21 +945,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "94dd8d4b-5c6c-4250-bc7b-0053365b71eb"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder [96ef16d368cc4b41b61ccf181e21aed7]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder [2e9645787ae442279dc8e93f072b98ef]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"198"
@@ -1046,10 +973,10 @@
"no-cache"
],
"x-ms-request-id": [
- "96ef16d3-68cc-4b41-b61c-cf181e21aed7"
+ "2e964578-7ae4-4227-9dc8-e93f072b98ef"
],
"Server-Perf": [
- "[96ef16d368cc4b41b61ccf181e21aed7][ AuthTime::761.724396907596::PostAuthTime::180.059500897304 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:043 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:043 ms]%0a"
+ "[2e9645787ae442279dc8e93f072b98ef][ AuthTime::830.583255920579::PostAuthTime::202.299629274168 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:034 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:035 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1061,7 +988,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:34 GMT"
+ "Fri, 26 Feb 2016 02:02:10 GMT"
]
},
"StatusCode": 404
@@ -1072,18 +999,17 @@
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "ff5fbe9b-86b0-491a-9231-2e40012aefcd"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "{\r\n \"boolean\": true\r\n}",
@@ -1101,10 +1027,10 @@
"no-cache"
],
"x-ms-request-id": [
- "97850ae3-628e-425e-a1a2-a9a83b64e2c4"
+ "42b87f41-1e33-4fc2-8d0c-19acb0699d59"
],
"Server-Perf": [
- "[97850ae3628e425ea1a2a9a83b64e2c4][ AuthTime::1725.74842308936::PostAuthTime::34304.5426317599 ][HdfsMkdirs :: 00:00:070 ms]%0a[MKDIRS :: 00:00:070 ms]%0a"
+ "[42b87f411e334fc28d0c19acb0699d59][ AuthTime::1738.15157160723::PostAuthTime::31291.8606262478 ][HdfsMkdirs :: 00:00:064 ms]%0a[MKDIRS :: 00:00:064 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1116,10 +1042,10 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:25 GMT"
+ "Fri, 26 Feb 2016 02:02:05 GMT"
],
"Set-Cookie": [
- "UserPrincipalSession=c02e6f2b-b914-46d3-8bef-03713798264f; path=/; secure; HttpOnly"
+ "UserPrincipalSession=4a407aa9-9b23-4d4f-a6f7-968656aba7a3; path=/; secure; HttpOnly"
]
},
"StatusCode": 200
@@ -1130,21 +1056,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "4b7de2ff-4cb9-46fd-9fbf-43b0e03ba47a"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder/emptyfile.txt [bca4ef7527ec44a1ba16e5ea1855c8ab]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder/emptyfile.txt [49f644066a974aba9544c3bbc5c5ba36]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"212"
@@ -1159,10 +1084,10 @@
"no-cache"
],
"x-ms-request-id": [
- "bca4ef75-27ec-44a1-ba16-e5ea1855c8ab"
+ "49f64406-6a97-4aba-9544-c3bbc5c5ba36"
],
"Server-Perf": [
- "[bca4ef7527ec44a1ba16e5ea1855c8ab][ AuthTime::803.210790225977::PostAuthTime::183.908753885607 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:028 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:028 ms]%0a"
+ "[49f644066a974aba9544c3bbc5c5ba36][ AuthTime::758.30283869577::PostAuthTime::174.499468803088 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:026 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:026 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1174,7 +1099,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:25 GMT"
+ "Fri, 26 Feb 2016 02:02:05 GMT"
]
},
"StatusCode": 404
@@ -1185,21 +1110,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "81d34f30-37da-4c1a-82cf-3877a2fa5a42"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1447975226350,\r\n \"modificationTime\": 1447975226350,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1456452125990,\r\n \"modificationTime\": 1456452125990,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"222"
@@ -1214,10 +1138,10 @@
"no-cache"
],
"x-ms-request-id": [
- "bd7e558a-e06d-4df0-bd54-6b8dcb5cfff8"
+ "f7dcf7e7-1daf-45fb-a363-28c0ce4ed209"
],
"Server-Perf": [
- "[bd7e558ae06d4df0bd546b8dcb5cfff8][ AuthTime::755.308975260423::PostAuthTime::179.631806120826 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:042 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:042 ms]%0a"
+ "[f7dcf7e71daf45fba36328c0ce4ed209][ AuthTime::818.180107402712::PostAuthTime::192.46264941517 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:047 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:047 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1229,7 +1153,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:26 GMT"
+ "Fri, 26 Feb 2016 02:02:05 GMT"
]
},
"StatusCode": 200
@@ -1240,21 +1164,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "da3adba8-6b43-43a7-b64b-616dcbb0f160"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 36,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1447975226350,\r\n \"modificationTime\": 1447975228667,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 36,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1456452125990,\r\n \"modificationTime\": 1456452127440,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"223"
@@ -1269,10 +1192,10 @@
"no-cache"
],
"x-ms-request-id": [
- "250122aa-7737-4cae-9fad-655fc817ff9c"
+ "9a61c3da-aa2b-4f88-bc16-3428e3662e95"
],
"Server-Perf": [
- "[250122aa77374cae9fad655fc817ff9c][ AuthTime::819.035496955669::PostAuthTime::184.336448662085 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:020 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:021 ms]%0a"
+ "[9a61c3daaa2b4f88bc163428e3662e95][ AuthTime::847.263352203227::PostAuthTime::188.613396426867 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:017 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:017 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1284,14 +1207,14 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:28 GMT"
+ "Fri, 26 Feb 2016 02:02:07 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/webhdfs/v1/adlspstestfolder%2Femptyfile.txt?op=CREATE&overwrite=false&write=true&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlciUyRmVtcHR5ZmlsZS50eHQ/b3A9Q1JFQVRFJm92ZXJ3cml0ZT1mYWxzZSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/webhdfs/v1/adlspstestfolder%2Femptyfile.txt?overwrite=false&op=CREATE&write=true&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlciUyRmVtcHR5ZmlsZS50eHQ/b3ZlcndyaXRlPWZhbHNlJm9wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
@@ -1301,21 +1224,17 @@
"Content-Length": [
"0"
],
- "Transfer-Encoding": [
- "chunked"
+ "x-ms-client-request-id": [
+ "3047d9e2-278f-4751-8d61-1c004a518f4b"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "",
@@ -1330,13 +1249,13 @@
"no-cache"
],
"x-ms-request-id": [
- "8ee3968a-7cf0-44f3-a0c1-12288ea32eab"
+ "19322c3e-bc0b-431b-86cc-14001a1cafdd"
],
"ContentLength": [
"0"
],
"Server-Perf": [
- "[8ee3968a7cf044f3a0c112288ea32eab][ AuthTime::1691.53284097111::PostAuthTime::34795.5362351569 ][FsOpenStream :: 00:00:162 ms]%0a[Open :: 00:00:162 ms]%0a[Write :: 00:00:078 ms]%0a[FsAppendStream :: 00:00:019 ms]%0a[FlushWrite :: 00:00:019 ms]%0a[CREATE :: 00:00:263 ms]%0a"
+ "[19322c3ebc0b431b86cc14001a1cafdd][ AuthTime::1623.1016767346::PostAuthTime::30883.8398094876 ][FsOpenStream :: 00:00:081 ms]%0a[Open :: 00:00:081 ms]%0a[Write :: 00:00:000 ms]%0a[FsAppendStream :: 00:00:015 ms]%0a[FlushWrite :: 00:00:015 ms]%0a[CREATE :: 00:00:098 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1348,13 +1267,13 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:26 GMT"
+ "Fri, 26 Feb 2016 02:02:05 GMT"
],
"Location": [
- "https://testdatalake18228.azuredatalakestore.net/webhdfs/v1/adlspstestfolder/emptyfile.txt?op=CREATE&overwrite=false&write=true&api-version=2015-10-01-preview"
+ "https://onesdk3575.azuredatalakestore.net/webhdfs/v1/adlspstestfolder/emptyfile.txt?overwrite=false&op=CREATE&write=true&api-version=2015-10-01-preview"
],
"Set-Cookie": [
- "UserPrincipalSession=c02e6f2b-b914-46d3-8bef-03713798264f; path=/; secure; HttpOnly"
+ "UserPrincipalSession=4a407aa9-9b23-4d4f-a6f7-968656aba7a3; path=/; secure; HttpOnly"
]
},
"StatusCode": 201
@@ -1365,21 +1284,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "27be696f-ce00-4a31-826e-85ec6522537b"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder/contentfile.txt [a18736d5c24a4286a24ffd0a8ecaa438]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder/contentfile.txt [10b206f44dcd4987896b8f2a39d8c25e]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"214"
@@ -1394,10 +1312,10 @@
"no-cache"
],
"x-ms-request-id": [
- "a18736d5-c24a-4286-a24f-fd0a8ecaa438"
+ "10b206f4-4dcd-4987-896b-8f2a39d8c25e"
],
"Server-Perf": [
- "[a18736d5c24a4286a24ffd0a8ecaa438][ AuthTime::797.223063355283::PostAuthTime::191.607259862214 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:035 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:036 ms]%0a"
+ "[10b206f44dcd4987896b8f2a39d8c25e][ AuthTime::773.699850648984::PostAuthTime::193.318038968126 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:039 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:040 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1409,7 +1327,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:26 GMT"
+ "Fri, 26 Feb 2016 02:02:05 GMT"
]
},
"StatusCode": 404
@@ -1420,21 +1338,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "5947c168-aa35-46b2-afc7-1ba7ab23b036"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 36,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1447975227170,\r\n \"modificationTime\": 1447975227699,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 36,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1456452126540,\r\n \"modificationTime\": 1456452126753,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"223"
@@ -1449,10 +1366,10 @@
"no-cache"
],
"x-ms-request-id": [
- "f994f64f-4468-486d-a8e5-24ff8ec21998"
+ "19ef693c-ffea-45c1-b78a-3b83fef1b7d5"
],
"Server-Perf": [
- "[f994f64f4468486da8e524ff8ec21998][ AuthTime::862.660364156441::PostAuthTime::217.696641227381 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:046 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:046 ms]%0a"
+ "[19ef693cffea45c1b78a3b83fef1b7d5][ AuthTime::822.029360391016::PostAuthTime::191.179565085736 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:037 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:037 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1464,14 +1381,14 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:27 GMT"
+ "Fri, 26 Feb 2016 02:02:06 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/webhdfs/v1/adlspstestfolder%2Fcontentfile.txt?op=CREATE&overwrite=false&write=true&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlciUyRmNvbnRlbnRmaWxlLnR4dD9vcD1DUkVBVEUmb3ZlcndyaXRlPWZhbHNlJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/webhdfs/v1/adlspstestfolder%2Fcontentfile.txt?overwrite=false&op=CREATE&write=true&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlciUyRmNvbnRlbnRmaWxlLnR4dD9vdmVyd3JpdGU9ZmFsc2Umb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "Test file content! @ Azure PsTest01?",
"RequestHeaders": {
@@ -1481,21 +1398,17 @@
"Content-Length": [
"36"
],
- "Transfer-Encoding": [
- "chunked"
+ "x-ms-client-request-id": [
+ "d1bd10cf-6281-4c44-9916-da06d4b4a0ce"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "",
@@ -1510,13 +1423,13 @@
"no-cache"
],
"x-ms-request-id": [
- "156a932c-7fb7-4cb1-aa04-f3b47faed990"
+ "fa490213-9072-481b-8271-a6ec3a667508"
],
"ContentLength": [
"0"
],
"Server-Perf": [
- "[156a932c7fb74cb1aa04f3b47faed990][ AuthTime::1878.43545829206::PostAuthTime::34724.5389022615 ][FsOpenStream :: 00:00:079 ms]%0a[Open :: 00:00:079 ms]%0a[FsAppendStream :: 00:00:254 ms]%0a[Write :: 00:00:455 ms]%0a[FsAppendStream :: 00:00:002 ms]%0a[FlushWrite :: 00:00:002 ms]%0a[CREATE :: 00:00:539 ms]%0a"
+ "[fa4902139072481b8271a6ec3a667508][ AuthTime::1648.33566854681::PostAuthTime::31161.413719422 ][FsOpenStream :: 00:00:070 ms]%0a[Open :: 00:00:071 ms]%0a[FsAppendStream :: 00:00:172 ms]%0a[Write :: 00:00:172 ms]%0a[FsAppendStream :: 00:00:010 ms]%0a[FlushWrite :: 00:00:010 ms]%0a[CREATE :: 00:00:255 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1528,38 +1441,37 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:27 GMT"
+ "Fri, 26 Feb 2016 02:02:06 GMT"
],
"Location": [
- "https://testdatalake18228.azuredatalakestore.net/webhdfs/v1/adlspstestfolder/contentfile.txt?op=CREATE&overwrite=false&write=true&api-version=2015-10-01-preview"
+ "https://onesdk3575.azuredatalakestore.net/webhdfs/v1/adlspstestfolder/contentfile.txt?overwrite=false&op=CREATE&write=true&api-version=2015-10-01-preview"
],
"Set-Cookie": [
- "UserPrincipalSession=c02e6f2b-b914-46d3-8bef-03713798264f; path=/; secure; HttpOnly"
+ "UserPrincipalSession=4a407aa9-9b23-4d4f-a6f7-968656aba7a3; path=/; secure; HttpOnly"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/webhdfs/v1/adlspstestfolder?op=LISTSTATUS&$top=100&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlcj9vcD1MSVNUU1RBVFVTJiR0b3A9MTAwJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/webhdfs/v1/adlspstestfolder?op=LISTSTATUS&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlcj9vcD1MSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "43184000-0c6d-44ea-a23b-147f0a115ee8"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 36,\r\n \"pathSuffix\": \"contentfile.txt\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1447975227170,\r\n \"modificationTime\": 1447975227699,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n },\r\n {\r\n \"length\": 0,\r\n \"pathSuffix\": \"emptyfile.txt\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1447975226350,\r\n \"modificationTime\": 1447975226350,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 36,\r\n \"pathSuffix\": \"contentfile.txt\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1456452126540,\r\n \"modificationTime\": 1456452126753,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n },\r\n {\r\n \"length\": 0,\r\n \"pathSuffix\": \"emptyfile.txt\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1456452125990,\r\n \"modificationTime\": 1456452125990,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"478"
@@ -1574,10 +1486,10 @@
"no-cache"
],
"x-ms-request-id": [
- "d29895a4-80ba-43d7-a447-de94fe61f31c"
+ "b03c53e1-034e-4e83-906a-b044f81efeb2"
],
"Server-Perf": [
- "[d29895a480ba43d7a447de94fe61f31c][ AuthTime::777.976798413766::PostAuthTime::186.902617320954 ][FsEnumerateDirectory :: 00:00:030 ms]%0a[FsEnumerateDirectory :: 00:00:030 ms]%0a[ListDirectory :: 00:00:030 ms]%0a[LISTSTATUS :: 00:00:030 ms]%0a"
+ "[b03c53e1034e4e83906ab044f81efeb2][ AuthTime::763.00748123703::PostAuthTime::185.191838215042 ][FsEnumerateDirectory :: 00:00:042 ms]%0a[FsEnumerateDirectory :: 00:00:042 ms]%0a[ListDirectory :: 00:00:042 ms]%0a[LISTSTATUS :: 00:00:042 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1589,7 +1501,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:27 GMT"
+ "Fri, 26 Feb 2016 02:02:06 GMT"
]
},
"StatusCode": 200
@@ -1606,21 +1518,17 @@
"Content-Length": [
"36"
],
- "Transfer-Encoding": [
- "chunked"
+ "x-ms-client-request-id": [
+ "2125c804-d81a-43cd-ae2c-e5d0971bf90b"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "",
@@ -1635,10 +1543,10 @@
"no-cache"
],
"x-ms-request-id": [
- "fe182423-ca72-47ec-8290-d166b6b393f6"
+ "3d43e523-8412-44c0-a25a-659781c8b5cb"
],
"Server-Perf": [
- "[fe182423ca7247ec8290d166b6b393f6][ AuthTime::852.823384297443::PostAuthTime::202.727324050646 ][GetCacheEntry :: 00:00:000 ms]%0a[FsOpenStream :: 00:00:106 ms]%0a[OpenNewHandle :: 00:00:106 ms]%0a[CreateCacheEntry :: 00:00:000 ms]%0a[GetOrCreateHandle :: 00:00:106 ms]%0a[Open :: 00:00:106 ms]%0a[FsGetStreamLength :: 00:00:013 ms]%0a[GetLength :: 00:00:013 ms]%0a[FsAppendStream :: 00:00:108 ms]%0a[Write :: 00:00:311 ms]%0a[FsAppendStream :: 00:00:002 ms]%0a[FlushWrite :: 00:00:002 ms]%0a[APPEND :: 00:00:435 ms]%0a"
+ "[3d43e523841244c0a25a659781c8b5cb][ AuthTime::817.752412626234::PostAuthTime::198.878071062343 ][GetCacheEntry :: 00:00:000 ms]%0a[FsOpenStream :: 00:00:038 ms]%0a[OpenNewHandle :: 00:00:038 ms]%0a[CreateCacheEntry :: 00:00:000 ms]%0a[GetOrCreateHandle :: 00:00:038 ms]%0a[Open :: 00:00:038 ms]%0a[FsGetStreamLength :: 00:00:009 ms]%0a[GetLength :: 00:00:009 ms]%0a[FsAppendStream :: 00:00:180 ms]%0a[Write :: 00:00:180 ms]%0a[FsAppendStream :: 00:00:010 ms]%0a[FlushWrite :: 00:00:010 ms]%0a[APPEND :: 00:00:240 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1650,14 +1558,14 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:28 GMT"
+ "Fri, 26 Feb 2016 02:02:06 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/webhdfs/v1/adlspstestfolder%2Fconcatfile.txt?op=MSCONCAT&deletesourcedirectory=false&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlciUyRmNvbmNhdGZpbGUudHh0P29wPU1TQ09OQ0FUJmRlbGV0ZXNvdXJjZWRpcmVjdG9yeT1mYWxzZSZhcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/webhdfs/v1/adlspstestfolder%2Fconcatfile.txt?deletesourcedirectory=false&op=MSCONCAT&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlciUyRmNvbmNhdGZpbGUudHh0P2RlbGV0ZXNvdXJjZWRpcmVjdG9yeT1mYWxzZSZvcD1NU0NPTkNBVCZhcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "POST",
"RequestBody": "sources=adlspstestfolder/emptyfile.txt,adlspstestfolder/contentfile.txt",
"RequestHeaders": {
@@ -1667,18 +1575,17 @@
"Content-Length": [
"71"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "56a9b050-c824-46d3-95a0-b731bcec492a"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "",
@@ -1693,10 +1600,10 @@
"no-cache"
],
"x-ms-request-id": [
- "99815d45-8e6a-436a-9e9a-263e4bd50bee"
+ "629fd7f6-c01c-4e24-92c8-54e9d496c832"
],
"Server-Perf": [
- "[99815d458e6a436a9e9a263e4bd50bee][ AuthTime::741.195047636644::PostAuthTime::179.631806120826 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:048 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[FsMultiModifyStream :: 00:01:037 ms]%0a[MSCONCAT :: 00:01:101 ms]%0a"
+ "[629fd7f6c01c4e2492c854e9d496c832][ AuthTime::765.145955119421::PostAuthTime::192.034954638692 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:034 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[FsMultiModifyStream :: 00:00:672 ms]%0a[MSCONCAT :: 00:00:708 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1708,7 +1615,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:29 GMT"
+ "Fri, 26 Feb 2016 02:02:07 GMT"
]
},
"StatusCode": 200
@@ -1719,21 +1626,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "62bb6e5d-3c07-49f9-b15d-573691599a63"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 72,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1447975229210,\r\n \"modificationTime\": 1447975229540,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 72,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1456452127857,\r\n \"modificationTime\": 1456452127930,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"223"
@@ -1748,10 +1654,10 @@
"no-cache"
],
"x-ms-request-id": [
- "abe25f69-0fc0-40a5-992d-025bc099b162"
+ "19fe55d2-8090-4b92-8930-9a2e86b5de5c"
],
"Server-Perf": [
- "[abe25f690fc040a5992d025bc099b162][ AuthTime::873.352733568394::PostAuthTime::205.293492709515 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:099 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:100 ms]%0a"
+ "[19fe55d280904b9289309a2e86b5de5c][ AuthTime::932.802307498858::PostAuthTime::186.047227767998 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:048 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:048 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1763,7 +1669,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:29 GMT"
+ "Fri, 26 Feb 2016 02:02:08 GMT"
]
},
"StatusCode": 200
@@ -1774,21 +1680,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "67b352ab-3fdd-4668-89db-08c4f1a047cd"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 72,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1447975229210,\r\n \"modificationTime\": 1447975229540,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 72,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1456452127857,\r\n \"modificationTime\": 1456452127930,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"223"
@@ -1803,10 +1708,10 @@
"no-cache"
],
"x-ms-request-id": [
- "8a02a818-a1bb-40ba-aed6-2b65f548c5ad"
+ "fcc13b3a-83ab-439b-b351-c906103227d7"
],
"Server-Perf": [
- "[8a02a818a1bb40baaed62b65f548c5ad][ AuthTime::882.334323874436::PostAuthTime::180.91489045026 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:020 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:021 ms]%0a"
+ "[fcc13b3a83ab439bb351c906103227d7][ AuthTime::848.118741756183::PostAuthTime::191.607259862214 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:016 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:016 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1818,7 +1723,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:32 GMT"
+ "Fri, 26 Feb 2016 02:02:09 GMT"
]
},
"StatusCode": 200
@@ -1829,21 +1734,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "8808b1df-b007-499e-bbef-052b774a6e32"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 72,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1447975229210,\r\n \"modificationTime\": 1447975229540,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 72,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1456452127857,\r\n \"modificationTime\": 1456452127930,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"223"
@@ -1858,10 +1762,10 @@
"no-cache"
],
"x-ms-request-id": [
- "84b75247-69f9-45f0-bdd6-a946ac5eb430"
+ "554c9e23-9264-483f-92fd-ea7f9dbbeacb"
],
"Server-Perf": [
- "[84b7524769f945f0bdd6a946ac5eb430][ AuthTime::836.998677567751::PostAuthTime::202.727324050646 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:020 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:021 ms]%0a"
+ "[554c9e239264483f92fdea7f9dbbeacb][ AuthTime::780.970661849113::PostAuthTime::185.61953299152 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:016 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:016 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1873,7 +1777,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:32 GMT"
+ "Fri, 26 Feb 2016 02:02:09 GMT"
]
},
"StatusCode": 200
@@ -1884,21 +1788,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "ecbf3653-4f2c-460d-9f70-c9e734458cb6"
],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder/concatfile.txt [f638f17cd9b54ff390199509d39fddf5]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder/concatfile.txt [2510519c0a5044939f16d5ce045fc404]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"213"
@@ -1913,10 +1816,10 @@
"no-cache"
],
"x-ms-request-id": [
- "f638f17c-d9b5-4ff3-9019-9509d39fddf5"
+ "2510519c-0a50-4493-9f16-d5ce045fc404"
],
"Server-Perf": [
- "[f638f17cd9b54ff390199509d39fddf5][ AuthTime::790.80764170811::PostAuthTime::197.594986732908 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:122 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:122 ms]%0a"
+ "[2510519c0a5044939f16d5ce045fc404][ AuthTime::808.343127543715::PostAuthTime::189.468785979823 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:039 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:039 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1928,7 +1831,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:33 GMT"
+ "Fri, 26 Feb 2016 02:02:10 GMT"
]
},
"StatusCode": 404
@@ -1939,21 +1842,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "2d354b99-83e6-455a-b176-0aa93e126479"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder/importfile.txt [271296d6e0ed40e2a785a8e372a8c481]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder/importfile.txt [56c755f5f15c4027acb85d5009999774]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"213"
@@ -1968,10 +1870,10 @@
"no-cache"
],
"x-ms-request-id": [
- "271296d6-e0ed-40e2-a785-a8e372a8c481"
+ "56c755f5-f15c-4027-acb8-5d5009999774"
],
"Server-Perf": [
- "[271296d6e0ed40e2a785a8e372a8c481][ AuthTime::811.336990979062::PostAuthTime::197.594986732908 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:040 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:040 ms]%0a"
+ "[56c755f5f15c4027acb85d5009999774][ AuthTime::807.487737990758::PostAuthTime::187.330312097432 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:015 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:015 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1983,7 +1885,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:30 GMT"
+ "Fri, 26 Feb 2016 02:02:08 GMT"
]
},
"StatusCode": 404
@@ -1994,21 +1896,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "8689e854-bfc4-48df-b975-193895fd02fe"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder/importfile.txt [fa94d4bed4644bfd882719968dbaf085]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder/importfile.txt [7b1680fc338c445987b6976d23f1fcd4]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"213"
@@ -2023,10 +1924,10 @@
"no-cache"
],
"x-ms-request-id": [
- "fa94d4be-d464-4bfd-8827-19968dbaf085"
+ "7b1680fc-338c-4459-87b6-976d23f1fcd4"
],
"Server-Perf": [
- "[fa94d4bed4644bfd882719968dbaf085][ AuthTime::1879.29084784502::PostAuthTime::35705.2430247259 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:010 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:011 ms]%0a"
+ "[7b1680fc338c445987b6976d23f1fcd4][ AuthTime::1640.20946779373::PostAuthTime::31350.8825054018 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:007 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:007 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2038,10 +1939,10 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:30 GMT"
+ "Fri, 26 Feb 2016 02:02:08 GMT"
],
"Set-Cookie": [
- "UserPrincipalSession=c02e6f2b-b914-46d3-8bef-03713798264f; path=/; secure; HttpOnly"
+ "UserPrincipalSession=4a407aa9-9b23-4d4f-a6f7-968656aba7a3; path=/; secure; HttpOnly"
]
},
"StatusCode": 404
@@ -2052,21 +1953,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "7035f509-c167-4549-886a-ea2d9a2f5a66"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 18296,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1447975231087,\r\n \"modificationTime\": 1447975231979,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 20392,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1456452129327,\r\n \"modificationTime\": 1456452129763,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"226"
@@ -2081,10 +1981,10 @@
"no-cache"
],
"x-ms-request-id": [
- "4a5269d0-f4a3-4f63-bb2c-1a45d1e005a8"
+ "b13deac1-6985-4e6f-9c60-3416fc403de1"
],
"Server-Perf": [
- "[4a5269d0f4a34f63bb2c1a45d1e005a8][ AuthTime::825.023223826363::PostAuthTime::186.047227767998 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:056 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:056 ms]%0a"
+ "[b13deac169854e6f9c603416fc403de1][ AuthTime::793.373810366979::PostAuthTime::184.764143438563 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:043 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:043 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2096,7 +1996,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:31 GMT"
+ "Fri, 26 Feb 2016 02:02:09 GMT"
]
},
"StatusCode": 200
@@ -2107,21 +2007,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "01e575b4-c1ef-41ca-a34e-61c30e4b442b"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 18296,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1447975231087,\r\n \"modificationTime\": 1447975231979,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 20392,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1456452129327,\r\n \"modificationTime\": 1456452129763,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"226"
@@ -2136,10 +2035,10 @@
"no-cache"
],
"x-ms-request-id": [
- "cb01ccb8-d4d6-482a-b031-0844f85f1f2e"
+ "7cf35afc-40ab-4f64-9dde-5f4ed8687590"
],
"Server-Perf": [
- "[cb01ccb8d4d6482ab0310844f85f1f2e][ AuthTime::1681.69586111211::PostAuthTime::34402.9124303499 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:020 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:020 ms]%0a"
+ "[7cf35afc40ab4f649dde5f4ed8687590][ AuthTime::748.893553613251::PostAuthTime::189.041091203345 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:016 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:017 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2151,41 +2050,34 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:32 GMT"
- ],
- "Set-Cookie": [
- "UserPrincipalSession=c02e6f2b-b914-46d3-8bef-03713798264f; path=/; secure; HttpOnly"
+ "Fri, 26 Feb 2016 02:02:09 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/webhdfs/v1/adlspstestfolder%2Fimportfile.txt?op=CREATE&overwrite=true&write=true&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlciUyRmltcG9ydGZpbGUudHh0P29wPUNSRUFURSZvdmVyd3JpdGU9dHJ1ZSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/webhdfs/v1/adlspstestfolder%2Fimportfile.txt?overwrite=true&op=CREATE&write=true&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlciUyRmltcG9ydGZpbGUudHh0P292ZXJ3cml0ZT10cnVlJm9wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "PUT",
- "RequestBody": "<#\r\n.SYNOPSIS\r\nTests DataLakeStore Account Lifecycle (Create, Update, Get, List, Delete).\r\n#>\r\nfunction Test-DataLakeStoreAccount\r\n{\r\n param\r\n\t(\r\n\t\t$resourceGroupName,\r\n\t\t$accountName,\r\n\t\t$location = \"West US\"\r\n\t)\r\n\t\r\n # Creating Account\r\n $accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location\r\n \r\n Assert-AreEqual $accountName $accountCreated.Name\r\n Assert-AreEqual $location $accountCreated.Location\r\n Assert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountCreated.Type\r\n Assert-True {$accountCreated.Id -like \"*$resourceGroupName*\"}\r\n\r\n # In loop to check if account exists\r\n for ($i = 0; $i -le 60; $i++)\r\n {\r\n\t\t[array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName\r\n if ($accountGet[0].Properties.ProvisioningState -like \"Succeeded\")\r\n {\r\n Assert-AreEqual $accountName $accountGet[0].Name\r\n Assert-AreEqual $location $accountGet[0].Location\r\n Assert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountGet[0].Type\r\n Assert-True {$accountGet[0].Id -like \"*$resourceGroupName*\"}\r\n break\r\n }\r\n\r\n\t\tWrite-Host \"account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)\"\r\n\t\t[Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)\r\n Assert-False {$i -eq 60} \" Data Lake Store account is not in succeeded state even after 30 min.\"\r\n }\r\n\r\n # Updating Account\r\n\t$tagsToUpdate = @{\"Name\" = \"TestTag\"; \"Value\" = \"TestUpdate\"}\r\n $accountUpdated = Set-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Tags $tagsToUpdate\r\n \r\n Assert-AreEqual $accountName $accountUpdated.Name\r\n Assert-AreEqual $location $accountUpdated.Location\r\n Assert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountUpdated.Type\r\n Assert-True {$accountUpdated.Id -like \"*$resourceGroupName*\"}\r\n\t\r\n Assert-NotNull $accountUpdated.Tags \"Tags do not exists\"\r\n\tAssert-NotNull $accountUpdated.Tags[\"TestTag\"] \"The updated tag 'TestTag' does not exist\"\r\n\r\n # List all accounts in resource group\r\n [array]$accountsInResourceGroup = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName\r\n Assert-True {$accountsInResourceGroup.Count -ge 1}\r\n \r\n $found = 0\r\n for ($i = 0; $i -lt $accountsInResourceGroup.Count; $i++)\r\n {\r\n if ($accountsInResourceGroup[$i].Name -eq $accountName)\r\n {\r\n $found = 1\r\n Assert-AreEqual $location $accountsInResourceGroup[$i].Location\r\n Assert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountsInResourceGroup[$i].Type\r\n Assert-True {$accountsInResourceGroup[$i].Id -like \"*$resourceGroupName*\"}\r\n\r\n break\r\n }\r\n }\r\n Assert-True {$found -eq 1} \"Account created earlier is not found when listing all in resource group: $resourceGroupName.\"\r\n\r\n # List all Data Lake accounts in subscription\r\n [array]$accountsInSubscription = Get-AzureRmDataLakeStoreAccount\r\n Assert-True {$accountsInSubscription.Count -ge 1}\r\n Assert-True {$accountsInSubscription.Count -ge $accountsInResourceGroup.Count}\r\n \r\n $found = 0\r\n for ($i = 0; $i -lt $accountsInSubscription.Count; $i++)\r\n {\r\n if ($accountsInSubscription[$i].Name -eq $accountName)\r\n {\r\n $found = 1\r\n Assert-AreEqual $location $accountsInSubscription[$i].Location\r\n Assert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountsInSubscription[$i].Type\r\n Assert-True {$accountsInSubscription[$i].Id -like \"*$resourceGroupName*\"}\r\n \r\n break\r\n }\r\n }\r\n Assert-True {$found -eq 1} \"Account created earlier is not found when listing all in subscription.\"\r\n\r\n # Delete Data Lake account\r\n Assert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} \"Remove Account failed.\"\r\n\r\n\t# Verify that it is gone by trying to get it again\r\n\tAssert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}\r\n}\r\n\r\nfunction Test-DataLakeStoreFileSystem\r\n{\r\n\tparam\r\n\t(\r\n\t\t$resourceGroupName,\r\n\t\t$accountName,\r\n\t\t$fileToCopy,\r\n\t\t$location = \"West US\"\r\n\t)\r\n\r\n # Creating Account\r\n $accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location\r\n \r\n Assert-AreEqual $accountName $accountCreated.Name\r\n Assert-AreEqual $location $accountCreated.Location\r\n Assert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountCreated.Type\r\n Assert-True {$accountCreated.Id -like \"*$resourceGroupName*\"}\r\n\r\n # In loop to check if account exists\r\n for ($i = 0; $i -le 60; $i++)\r\n {\r\n\t\t[array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName\r\n if ($accountGet[0].Properties.ProvisioningState -like \"Succeeded\")\r\n {\r\n Assert-AreEqual $accountName $accountGet[0].Name\r\n Assert-AreEqual $location $accountGet[0].Location\r\n Assert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountGet[0].Type\r\n Assert-True {$accountGet[0].Id -like \"*$resourceGroupName*\"}\r\n break\r\n }\r\n\r\n\t\tWrite-Host \"account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)\"\r\n\t\t[Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)\r\n Assert-False {$i -eq 60} \" Data Lake Store account is not in succeeded state even after 30 min.\"\r\n }\r\n\r\n\t# define all the files and folders to create\r\n\t$folderToCreate = \"/adlspstestfolder\"\r\n\t$emptyFilePath = \"$folderToCreate\\emptyfile.txt\" # have one where the slash is in the wrong direction to make sure they get fixed.\r\n\t$contentFilePath = \"$folderToCreate/contentfile.txt\"\r\n\t$concatFile = \"$folderToCreate/concatfile.txt\"\r\n\t$moveFile = \"$folderToCreate/movefile.txt\"\r\n\t$movefolder = \"/adlspstestmovefolder\"\r\n\t$importFile = \"$folderToCreate/importfile.txt\"\r\n\t$content = \"Test file content! @ Azure PsTest01?\"\r\n\t\r\n\r\n # Create and get Empty folder\r\n\t$result = New-AzureRMDataLakeStoreItem -Account $accountName -path $folderToCreate -Folder\r\n\tAssert-NotNull $result \"No value was returned on folder creation\"\r\n\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $folderToCreate\r\n\tAssert-NotNull $result \"No value was returned on folder get\"\r\n\tAssert-AreEqual \"Directory\" $result.Type\r\n\t# Create and get Empty File\r\n\t$result = New-AzureRMDataLakeStoreItem -Account $accountName -path $emptyFilePath\r\n\tAssert-NotNull $result \"No value was returned on empty file creation\"\r\n\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $emptyFilePath\r\n\tAssert-NotNull $result \"No value was returned on empty file get\"\r\n\tAssert-AreEqual \"File\" $result.Type\r\n\tAssert-AreEqual 0 $result.Length\r\n\t# Create and get file with content\r\n\t$result = New-AzureRMDataLakeStoreItem -Account $accountName -path $contentFilePath -Value $content\r\n\tAssert-NotNull $result \"No value was returned on content file creation\"\r\n\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $contentFilePath\r\n\tAssert-NotNull $result \"No value was returned on content file get\"\r\n\tAssert-AreEqual \"File\" $result.Type\r\n\tAssert-AreEqual $content.length $result.Length\r\n\t# list files\r\n\t$result = Get-AzureRMDataLakeStoreChildItem -Account $accountName -path $folderToCreate\r\n\tAssert-NotNull $result \"No value was returned on folder list\"\r\n\tAssert-AreEqual 2 $result.length\r\n\t# add content to empty file\r\n\tAdd-AzureRmDataLakeStoreItemContent -Account $accountName -Path $emptyFilePath -Value $content\r\n\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $emptyFilePath\r\n\tAssert-NotNull $result \"No value was returned on empty file get with content added\"\r\n\tAssert-AreEqual \"File\" $result.Type\r\n\tAssert-AreEqual $content.length $result.Length\r\n\t# concat files\r\n\t$result = Join-AzureRmDataLakeStoreItem -Account $accountName -Paths $emptyFilePath,$contentFilePath -Destination $concatFile\r\n\tAssert-NotNull $result \"No value was returned on concat file\"\r\n\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $concatFile\r\n\tAssert-NotNull $result \"No value was returned on concat file get\"\r\n\tAssert-AreEqual \"File\" $result.Type\r\n\tAssert-AreEqual $($content.length*2) $result.Length\r\n\t\r\n\t# Import and get file\r\n\t$localFileInfo = Get-ChildItem $fileToCopy\r\n\t$result = Import-AzureRmDataLakeStoreItem -Account $accountName -Path $fileToCopy -Destination $importFile\r\n\tAssert-NotNull $result \"No value was returned on import file\"\r\n\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $importFile\r\n\tAssert-NotNull $result \"No value was returned on import file get\"\r\n\tAssert-AreEqual \"File\" $result.Type\r\n\tAssert-AreEqual $localFileInfo.length $result.Length\r\n\t# download file\r\n\t$currentDir = Split-Path $fileToCopy\r\n\t$targetFile = Join-Path $currentDir \"adlspstestdownload.txt\"\r\n\tif(Test-Path $targetFile)\r\n\t{\r\n\t\tRemove-Item -path $targetFile -force -confirm:$false\r\n\t}\r\n\r\n\tExport-AzureRMDataLakeStoreItem -Account $accountName -Path $concatFile -Destination $targetFile\r\n\t$downloadedFileInfo = Get-ChildItem $targetFile\r\n\tAssert-AreEqual $($content.length*2) $downloadedFileInfo.length\r\n\tRemove-Item -path $targetFile -force -confirm:$false\r\n\r\n\t# move a file\r\n\t$result = Move-AzureRmDataLakeStoreItem -Account $accountName -Path $concatFile -Destination $moveFile\r\n\tAssert-NotNull $result \"No value was returned on move file\"\r\n\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFile\r\n\tAssert-NotNull $result \"No value was returned on move file get\"\r\n\tAssert-AreEqual \"File\" $result.Type\r\n\tAssert-AreEqual $($content.length*2) $result.Length\r\n\tAssert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $concatFile}\r\n\t# move a folder\r\n\t$result = Move-AzureRmDataLakeStoreItem -Account $accountName -Path $folderToCreate -Destination $moveFolder\r\n\tAssert-NotNull $result \"No value was returned on move folder\"\r\n\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFolder\r\n\tAssert-NotNull $result \"No value was returned on move folder get\"\r\n\tAssert-AreEqual \"Directory\" $result.Type\r\n\tAssert-AreEqual 0 $result.Length\r\n\tAssert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $folderToCreate}\r\n\t# delete a file\r\n\tAssert-True {Remove-AzureRmDataLakeStoreItem -Account $accountName -paths \"$moveFolder/movefile.txt\" -force -passthru } \"Remove File Failed\"\r\n\tAssert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFile}\r\n\t# delete a folder\r\n\tAssert-True {Remove-AzureRmDataLakeStoreItem -Account $accountName -paths $moveFolder -force -recurse -passthru} \"Remove folder failed\"\r\n\tAssert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFolder}\r\n \r\n\t# Delete Data Lake account\r\n Assert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} \"Remove Account failed.\"\r\n\r\n\t# Verify that it is gone by trying to get it again\r\n\tAssert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}\r\n}\r\n\r\nfunction Test-DataLakeStoreFileSystemPermissions\r\n{\r\n\tparam\r\n\t(\r\n\t\t$resourceGroupName,\r\n\t\t$accountName,\r\n\t\t$location = \"West US\"\r\n\t)\r\n\r\n # Creating Account\r\n $accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location\r\n \r\n Assert-AreEqual $accountName $accountCreated.Name\r\n Assert-AreEqual $location $accountCreated.Location\r\n Assert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountCreated.Type\r\n Assert-True {$accountCreated.Id -like \"*$resourceGroupName*\"}\r\n\r\n # In loop to check if account exists\r\n for ($i = 0; $i -le 60; $i++)\r\n {\r\n\t\t[array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName\r\n if ($accountGet[0].Properties.ProvisioningState -like \"Succeeded\")\r\n {\r\n Assert-AreEqual $accountName $accountGet[0].Name\r\n Assert-AreEqual $location $accountGet[0].Location\r\n Assert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountGet[0].Type\r\n Assert-True {$accountGet[0].Id -like \"*$resourceGroupName*\"}\r\n break\r\n }\r\n\r\n\t\tWrite-Host \"account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)\"\r\n\t\t[Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)\r\n Assert-False {$i -eq 60} \" Data Lake Store account is not in succeeded state even after 30 min.\"\r\n }\r\n\r\n\t# define the permissions to add/remove\r\n\t$aceUserId = \"027c28d5-c91d-49f0-98c5-d10134b169b3\"\r\n\r\n\t# Set and get all the permissions\r\n\t$result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\"\r\n\tAssert-NotNull $result \"Did not get any result from ACL get\" \r\n\tAssert-True {$result.UserAces.count -ge 0} \"UserAces is negative or null\"\r\n\t$currentCount = $result.UserAces.Count\r\n\t$result.UserAces.Add($aceUserId, \"rwx\") \r\n\tSet-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\" -Acl $result -Force\r\n\t$result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\"\r\n\tAssert-Equal $currentCount+1 $result.UserACes.Count\r\n\t$result.UserAces.Remove($aceUserId)\r\n\t# remove the account\r\n\tSet-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\" -Acl $result -Force\r\n\t$result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\"\r\n\tAssert-Equal $currentCount $result.UserAces.Count\r\n\r\n\t# Set and get a specific permission with friendly sets\r\n\tSet-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path \"/\" -AceType User -Id $aceUserId -Permissions All -Force\r\n\t$result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\"\r\n\tAssert-Equal $currentCount+1 $result.UserAces.Count\r\n\t# remove a specific permission with friendly remove\r\n\tRemove-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path \"/\" -AceType User -Id $aceUserId -Force\r\n\t$result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\"\r\n\tAssert-Equal $currentCount $result.UserAces.Count\r\n\t# set and get a specific permission with the ACE string\r\n\tSet-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path \"/\" -Acl $([string]::Format(\"user:{0}:rwx\", $aceUserId)) -Force\r\n\t$result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\"\r\n\tAssert-Equal $currentCount+1 $result.UserAces.Count\r\n\t# remove a specific permission with the ACE string\r\n\tRemove-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path \"/\" -Acl $([string]::Format(\"user:{0}\", $aceUserId)) -force\r\n\t$result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\"\r\n\tAssert-Equal $currentCount $result.UserAces.Count\r\n\t# verify that removal of full acl and default acl fail\r\n\tAssert-Throws {Remove-AzureRmDataLakeStoreItemAcl -Account $accountName -Path \"/\" -Force }\r\n\tAssert-Throws {Remove-AzureRmDataLakeStoreItemAcl -Account $accountName -Path \"/\" -Force -Default }\r\n\r\n\t# Delete Data Lake account\r\n Assert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} \"Remove Account failed.\"\r\n\r\n\t# Verify that it is gone by trying to get it again\r\n\tAssert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}\r\n}\r\n\r\n<#\r\n.SYNOPSIS\r\nTests DataLakeStore Account Lifecycle Failure scenarios (Create, Update, Get, Delete).\r\n#>\r\nfunction Test-NegativeDataLakeStoreAccount\r\n{\r\n param\r\n\t(\r\n\t\t$resourceGroupName,\r\n\t\t$accountName,\r\n\t\t$location = \"West US\",\r\n\t\t$fakeaccountName = \"psfakedataLakeaccounttest\"\r\n\t)\r\n\t\r\n # Creating Account\r\n $accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location\r\n \r\n Assert-AreEqual $accountName $accountCreated.Name\r\n Assert-AreEqual $location $accountCreated.Location\r\n Assert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountCreated.Type\r\n Assert-True {$accountCreated.Id -like \"*$resourceGroupName*\"}\r\n\r\n # In loop to check if account exists\r\n for ($i = 0; $i -le 60; $i++)\r\n {\r\n \r\n\t\t[array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName\r\n if ($accountGet[0].Properties.ProvisioningState -like \"Succeeded\")\r\n {\r\n Assert-AreEqual $accountName $accountGet[0].Name\r\n Assert-AreEqual $location $accountGet[0].Location\r\n Assert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountGet[0].Type\r\n Assert-True {$accountGet[0].Id -like \"*$resourceGroupName*\"}\r\n break\r\n }\r\n\r\n\t\tWrite-Host \"account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)\"\r\n\t\t[Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)\r\n Assert-False {$i -eq 60} \" Data Lake Store account not in succeeded state even after 30 min.\"\r\n }\r\n\r\n # attempt to recreate the already created account\r\n\tAssert-Throws {New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location}\r\n\r\n\t# attempt to update a non-existent account\r\n\t$tagsToUpdate = @{\"Name\" = \"TestTag\"; \"Value\" = \"TestUpdate\"}\r\n Assert-Throws {Set-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $fakeaccountName -Tags $tagsToUpdate}\r\n\r\n\t# attempt to get a non-existent account\r\n\tAssert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $fakeaccountName}\r\n\r\n # Delete Data Lake account\r\n Assert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} \"Remove Account failed.\"\r\n\r\n\t# Delete Data Lake account again should throw.\r\n Assert-Throws {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru}\r\n\r\n\t# Verify that it is gone by trying to get it again\r\n\tAssert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}\r\n",
+ "RequestBody": "<#\r\n.SYNOPSIS\r\nTests DataLakeStore Account Lifecycle (Create, Update, Get, List, Delete).\r\n#>\r\nfunction Test-DataLakeStoreAccount\r\n{\r\n param\r\n\t(\r\n\t\t$location = \"West US\"\r\n\t)\r\n\t\r\n\ttry\r\n\t{\r\n\t\t# Creating Account\r\n\t\t$resourceGroupName = Get-ResourceGroupName\r\n\t\t$accountName = Get-DataLakeStoreAccountName\r\n\t\tNew-AzureRmResourceGroup -Name $resourceGroupName -Location $location\r\n\t\t$accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location\r\n \r\n\t\tAssert-AreEqual $accountName $accountCreated.Name\r\n\t\tAssert-AreEqual $location $accountCreated.Location\r\n\t\tAssert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountCreated.Type\r\n\t\tAssert-True {$accountCreated.Id -like \"*$resourceGroupName*\"}\r\n\r\n\t\t# In loop to check if account exists\r\n\t\tfor ($i = 0; $i -le 60; $i++)\r\n\t\t{\r\n\t\t\t[array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName\r\n\t\t\tif ($accountGet[0].Properties.ProvisioningState -like \"Succeeded\")\r\n\t\t\t{\r\n\t\t\t\tAssert-AreEqual $accountName $accountGet[0].Name\r\n\t\t\t\tAssert-AreEqual $location $accountGet[0].Location\r\n\t\t\t\tAssert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountGet[0].Type\r\n\t\t\t\tAssert-True {$accountGet[0].Id -like \"*$resourceGroupName*\"}\r\n\t\t\t\tbreak\r\n\t\t\t}\r\n\r\n\t\t\tWrite-Host \"account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)\"\r\n\t\t\t[Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)\r\n\t\t\tAssert-False {$i -eq 60} \" Data Lake Store account is not in succeeded state even after 30 min.\"\r\n\t\t}\r\n\r\n\t\t# Updating Account\r\n\t\t$tagsToUpdate = @{\"Name\" = \"TestTag\"; \"Value\" = \"TestUpdate\"}\r\n\t\t$accountUpdated = Set-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Tags $tagsToUpdate\r\n \r\n\t\tAssert-AreEqual $accountName $accountUpdated.Name\r\n\t\tAssert-AreEqual $location $accountUpdated.Location\r\n\t\tAssert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountUpdated.Type\r\n\t\tAssert-True {$accountUpdated.Id -like \"*$resourceGroupName*\"}\r\n\t\r\n\t\tAssert-NotNull $accountUpdated.Tags \"Tags do not exists\"\r\n\t\tAssert-NotNull $accountUpdated.Tags[\"TestTag\"] \"The updated tag 'TestTag' does not exist\"\r\n\r\n\t\t# List all accounts in resource group\r\n\t\t[array]$accountsInResourceGroup = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName\r\n\t\tAssert-True {$accountsInResourceGroup.Count -ge 1}\r\n \r\n\t\t$found = 0\r\n\t\tfor ($i = 0; $i -lt $accountsInResourceGroup.Count; $i++)\r\n\t\t{\r\n\t\t\tif ($accountsInResourceGroup[$i].Name -eq $accountName)\r\n\t\t\t{\r\n\t\t\t\t$found = 1\r\n\t\t\t\tAssert-AreEqual $location $accountsInResourceGroup[$i].Location\r\n\t\t\t\tAssert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountsInResourceGroup[$i].Type\r\n\t\t\t\tAssert-True {$accountsInResourceGroup[$i].Id -like \"*$resourceGroupName*\"}\r\n\r\n\t\t\t\tbreak\r\n\t\t\t}\r\n\t\t}\r\n\t\tAssert-True {$found -eq 1} \"Account created earlier is not found when listing all in resource group: $resourceGroupName.\"\r\n\r\n\t\t# List all Data Lake accounts in subscription\r\n\t\t[array]$accountsInSubscription = Get-AzureRmDataLakeStoreAccount\r\n\t\tAssert-True {$accountsInSubscription.Count -ge 1}\r\n\t\tAssert-True {$accountsInSubscription.Count -ge $accountsInResourceGroup.Count}\r\n \r\n\t\t$found = 0\r\n\t\tfor ($i = 0; $i -lt $accountsInSubscription.Count; $i++)\r\n\t\t{\r\n\t\t\tif ($accountsInSubscription[$i].Name -eq $accountName)\r\n\t\t\t{\r\n\t\t\t\t$found = 1\r\n\t\t\t\tAssert-AreEqual $location $accountsInSubscription[$i].Location\r\n\t\t\t\tAssert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountsInSubscription[$i].Type\r\n\t\t\t\tAssert-True {$accountsInSubscription[$i].Id -like \"*$resourceGroupName*\"}\r\n \r\n\t\t\t\tbreak\r\n\t\t\t}\r\n\t\t}\r\n\t\tAssert-True {$found -eq 1} \"Account created earlier is not found when listing all in subscription.\"\r\n\r\n\t\t# Delete Data Lake account\r\n\t\tAssert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} \"Remove Account failed.\"\r\n\r\n\t\t# Verify that it is gone by trying to get it again\r\n\t\tAssert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}\r\n\t}\r\n\tfinally\r\n\t{\r\n\t\t# cleanup the resource group that was used in case it still exists. This is a best effort task, we ignore failures here.\r\n\t\tInvoke-HandledCmdlet -Command {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures\r\n\t\tInvoke-HandledCmdlet -Command {Remove-AzureRmResourceGroup -Name $resourceGroupName -Force -ErrorAction SilentlyContinue} -IgnoreFailures\r\n\t}\r\n}\r\n\r\nfunction Test-DataLakeStoreFileSystem\r\n{\r\n\tparam\r\n\t(\r\n\t\t$fileToCopy,\r\n\t\t$location = \"West US\"\r\n\t)\r\n\r\n\ttry\r\n\t{\r\n\t\t# Creating Account\r\n\t\t$resourceGroupName = Get-ResourceGroupName\r\n\t\t$accountName = Get-DataLakeStoreAccountName\r\n\t\tNew-AzureRmResourceGroup -Name $resourceGroupName -Location $location\r\n\t\t$accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location\r\n \r\n\t\tAssert-AreEqual $accountName $accountCreated.Name\r\n\t\tAssert-AreEqual $location $accountCreated.Location\r\n\t\tAssert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountCreated.Type\r\n\t\tAssert-True {$accountCreated.Id -like \"*$resourceGroupName*\"}\r\n\r\n\t\t# In loop to check if account exists\r\n\t\tfor ($i = 0; $i -le 60; $i++)\r\n\t\t{\r\n\t\t\t[array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName\r\n\t\t\tif ($accountGet[0].Properties.ProvisioningState -like \"Succeeded\")\r\n\t\t\t{\r\n\t\t\t\tAssert-AreEqual $accountName $accountGet[0].Name\r\n\t\t\t\tAssert-AreEqual $location $accountGet[0].Location\r\n\t\t\t\tAssert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountGet[0].Type\r\n\t\t\t\tAssert-True {$accountGet[0].Id -like \"*$resourceGroupName*\"}\r\n\t\t\t\tbreak\r\n\t\t\t}\r\n\r\n\t\t\tWrite-Host \"account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)\"\r\n\t\t\t[Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)\r\n\t\t\tAssert-False {$i -eq 60} \" Data Lake Store account is not in succeeded state even after 30 min.\"\r\n\t\t}\r\n\r\n\t\t# define all the files and folders to create\r\n\t\t$folderToCreate = \"/adlspstestfolder\"\r\n\t\t$emptyFilePath = \"$folderToCreate\\emptyfile.txt\" # have one where the slash is in the wrong direction to make sure they get fixed.\r\n\t\t$contentFilePath = \"$folderToCreate/contentfile.txt\"\r\n\t\t$concatFile = \"$folderToCreate/concatfile.txt\"\r\n\t\t$moveFile = \"$folderToCreate/movefile.txt\"\r\n\t\t$movefolder = \"/adlspstestmovefolder\"\r\n\t\t$importFile = \"$folderToCreate/importfile.txt\"\r\n\t\t$content = \"Test file content! @ Azure PsTest01?\"\r\n\t\r\n\r\n\t\t# Create and get Empty folder\r\n\t\t$result = New-AzureRMDataLakeStoreItem -Account $accountName -path $folderToCreate -Folder\r\n\t\tAssert-NotNull $result \"No value was returned on folder creation\"\r\n\t\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $folderToCreate\r\n\t\tAssert-NotNull $result \"No value was returned on folder get\"\r\n\t\tAssert-AreEqual \"Directory\" $result.Type\r\n\t\t# Create and get Empty File\r\n\t\t$result = New-AzureRMDataLakeStoreItem -Account $accountName -path $emptyFilePath\r\n\t\tAssert-NotNull $result \"No value was returned on empty file creation\"\r\n\t\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $emptyFilePath\r\n\t\tAssert-NotNull $result \"No value was returned on empty file get\"\r\n\t\tAssert-AreEqual \"File\" $result.Type\r\n\t\tAssert-AreEqual 0 $result.Length\r\n\t\t# Create and get file with content\r\n\t\t$result = New-AzureRMDataLakeStoreItem -Account $accountName -path $contentFilePath -Value $content\r\n\t\tAssert-NotNull $result \"No value was returned on content file creation\"\r\n\t\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $contentFilePath\r\n\t\tAssert-NotNull $result \"No value was returned on content file get\"\r\n\t\tAssert-AreEqual \"File\" $result.Type\r\n\t\tAssert-AreEqual $content.length $result.Length\r\n\t\t# list files\r\n\t\t$result = Get-AzureRMDataLakeStoreChildItem -Account $accountName -path $folderToCreate\r\n\t\tAssert-NotNull $result \"No value was returned on folder list\"\r\n\t\tAssert-AreEqual 2 $result.length\r\n\t\t# add content to empty file\r\n\t\tAdd-AzureRmDataLakeStoreItemContent -Account $accountName -Path $emptyFilePath -Value $content\r\n\t\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $emptyFilePath\r\n\t\tAssert-NotNull $result \"No value was returned on empty file get with content added\"\r\n\t\tAssert-AreEqual \"File\" $result.Type\r\n\t\tAssert-AreEqual $content.length $result.Length\r\n\t\t# concat files\r\n\t\t$result = Join-AzureRmDataLakeStoreItem -Account $accountName -Paths $emptyFilePath,$contentFilePath -Destination $concatFile\r\n\t\tAssert-NotNull $result \"No value was returned on concat file\"\r\n\t\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $concatFile\r\n\t\tAssert-NotNull $result \"No value was returned on concat file get\"\r\n\t\tAssert-AreEqual \"File\" $result.Type\r\n\t\tAssert-AreEqual $($content.length*2) $result.Length\r\n\t\r\n\t\t# Import and get file\r\n\t\t$localFileInfo = Get-ChildItem $fileToCopy\r\n\t\t$result = Import-AzureRmDataLakeStoreItem -Account $accountName -Path $fileToCopy -Destination $importFile\r\n\t\tAssert-NotNull $result \"No value was returned on import file\"\r\n\t\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $importFile\r\n\t\tAssert-NotNull $result \"No value was returned on import file get\"\r\n\t\tAssert-AreEqual \"File\" $result.Type\r\n\t\tAssert-AreEqual $localFileInfo.length $result.Length\r\n\t\t# download file\r\n\t\t$currentDir = Split-Path $fileToCopy\r\n\t\t$targetFile = Join-Path $currentDir \"adlspstestdownload.txt\"\r\n\t\tif(Test-Path $targetFile)\r\n\t\t{\r\n\t\t\tRemove-Item -path $targetFile -force -confirm:$false\r\n\t\t}\r\n\r\n\t\tExport-AzureRMDataLakeStoreItem -Account $accountName -Path $concatFile -Destination $targetFile\r\n\t\t$downloadedFileInfo = Get-ChildItem $targetFile\r\n\t\tAssert-AreEqual $($content.length*2) $downloadedFileInfo.length\r\n\t\tRemove-Item -path $targetFile -force -confirm:$false\r\n\r\n\t\t# move a file\r\n\t\t$result = Move-AzureRmDataLakeStoreItem -Account $accountName -Path $concatFile -Destination $moveFile\r\n\t\tAssert-NotNull $result \"No value was returned on move file\"\r\n\t\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFile\r\n\t\tAssert-NotNull $result \"No value was returned on move file get\"\r\n\t\tAssert-AreEqual \"File\" $result.Type\r\n\t\tAssert-AreEqual $($content.length*2) $result.Length\r\n\t\tAssert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $concatFile}\r\n\t\t# move a folder\r\n\t\t$result = Move-AzureRmDataLakeStoreItem -Account $accountName -Path $folderToCreate -Destination $moveFolder\r\n\t\tAssert-NotNull $result \"No value was returned on move folder\"\r\n\t\t$result = Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFolder\r\n\t\tAssert-NotNull $result \"No value was returned on move folder get\"\r\n\t\tAssert-AreEqual \"Directory\" $result.Type\r\n\t\tAssert-AreEqual 0 $result.Length\r\n\t\tAssert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $folderToCreate}\r\n\t\t# delete a file\r\n\t\tAssert-True {Remove-AzureRmDataLakeStoreItem -Account $accountName -paths \"$moveFolder/movefile.txt\" -force -passthru } \"Remove File Failed\"\r\n\t\tAssert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFile}\r\n\t\t# delete a folder\r\n\t\tAssert-True {Remove-AzureRmDataLakeStoreItem -Account $accountName -paths $moveFolder -force -recurse -passthru} \"Remove folder failed\"\r\n\t\tAssert-Throws {Get-AzureRMDataLakeStoreItem -Account $accountName -path $moveFolder}\r\n \r\n\t\t# Delete Data Lake account\r\n\t\tAssert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} \"Remove Account failed.\"\r\n\r\n\t\t# Verify that it is gone by trying to get it again\r\n\t\tAssert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}\r\n\t}\r\n\tfinally\r\n\t{\r\n\t\t# cleanup the resource group that was used in case it still exists. This is a best effort task, we ignore failures here.\r\n\t\tInvoke-HandledCmdlet -Command {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures\r\n\t\tInvoke-HandledCmdlet -Command {Remove-AzureRmResourceGroup -Name $resourceGroupName -Force -ErrorAction SilentlyContinue} -IgnoreFailures\r\n\t}\r\n}\r\n\r\nfunction Test-DataLakeStoreFileSystemPermissions\r\n{\r\n\tparam\r\n\t(\r\n\t\t$location = \"West US\"\r\n\t)\r\n\r\n\ttry\r\n\t{\r\n\t\t# Creating Account\r\n\t\t$resourceGroupName = Get-ResourceGroupName\r\n\t\t$accountName = Get-DataLakeStoreAccountName\r\n\t\tNew-AzureRmResourceGroup -Name $resourceGroupName -Location $location\r\n\t\t$accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location\r\n \r\n\t\tAssert-AreEqual $accountName $accountCreated.Name\r\n\t\tAssert-AreEqual $location $accountCreated.Location\r\n\t\tAssert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountCreated.Type\r\n\t\tAssert-True {$accountCreated.Id -like \"*$resourceGroupName*\"}\r\n\r\n\t\t# In loop to check if account exists\r\n\t\tfor ($i = 0; $i -le 60; $i++)\r\n\t\t{\r\n\t\t\t[array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName\r\n\t\t\tif ($accountGet[0].Properties.ProvisioningState -like \"Succeeded\")\r\n\t\t\t{\r\n\t\t\t\tAssert-AreEqual $accountName $accountGet[0].Name\r\n\t\t\t\tAssert-AreEqual $location $accountGet[0].Location\r\n\t\t\t\tAssert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountGet[0].Type\r\n\t\t\t\tAssert-True {$accountGet[0].Id -like \"*$resourceGroupName*\"}\r\n\t\t\t\tbreak\r\n\t\t\t}\r\n\r\n\t\t\tWrite-Host \"account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)\"\r\n\t\t\t[Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)\r\n\t\t\tAssert-False {$i -eq 60} \" Data Lake Store account is not in succeeded state even after 30 min.\"\r\n\t\t}\r\n\r\n\t\t# define the permissions to add/remove\r\n\t\t$aceUserId = \"027c28d5-c91d-49f0-98c5-d10134b169b3\"\r\n\r\n\t\t# Set and get all the permissions\r\n\t\t$result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\"\r\n\t\tAssert-NotNull $result \"Did not get any result from ACL get\" \r\n\t\tAssert-True {$result.UserAces.count -ge 0} \"UserAces is negative or null\"\r\n\t\t$currentCount = $result.UserAces.Count\r\n\t\t$result.UserAces.Add($aceUserId, \"rwx\") \r\n\t\tSet-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\" -Acl $result -Force\r\n\t\t$result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\"\r\n\t\tAssert-AreEqual $($currentCount+1) $result.UserACes.Count\r\n\t\t$result.UserAces.Remove($aceUserId)\r\n\t\t# remove the account\r\n\t\tSet-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\" -Acl $result -Force\r\n\t\t$result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\"\r\n\t\tAssert-AreEqual $currentCount $result.UserAces.Count\r\n\r\n\t\t# Set and get a specific permission with friendly sets\r\n\t\tSet-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path \"/\" -AceType User -Id $aceUserId -Permissions All -Force\r\n\t\t$result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\"\r\n\t\tAssert-AreEqual $($currentCount+1) $result.UserAces.Count\r\n\t\t# remove a specific permission with friendly remove\r\n\t\tRemove-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path \"/\" -AceType User -Id $aceUserId -Force\r\n\t\t$result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\"\r\n\t\tAssert-AreEqual $currentCount $result.UserAces.Count\r\n\t\t# set and get a specific permission with the ACE string\r\n\t\tSet-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path \"/\" -Acl $([string]::Format(\"user:{0}:rwx\", $aceUserId)) -Force\r\n\t\t$result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\"\r\n\t\tAssert-AreEqual $($currentCount+1) $result.UserAces.Count\r\n\t\t# remove a specific permission with the ACE string\r\n\t\tRemove-AzureRmDataLakeStoreItemAclEntry -Account $accountName -path \"/\" -Acl $([string]::Format(\"user:{0}:---\", $aceUserId)) -force\r\n\t\t$result = Get-AzureRMDataLakeStoreItemAcl -Account $accountName -path \"/\"\r\n\t\tAssert-AreEqual $currentCount $result.UserAces.Count\r\n\t\t# verify that removal of full acl and default acl fail\r\n\t\tAssert-Throws {Remove-AzureRmDataLakeStoreItemAcl -Account $accountName -Path \"/\" -Force }\r\n\t\tAssert-Throws {Remove-AzureRmDataLakeStoreItemAcl -Account $accountName -Path \"/\" -Force -Default }\r\n\r\n\t\t# Delete Data Lake account\r\n\t\tAssert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} \"Remove Account failed.\"\r\n\r\n\t\t# Verify that it is gone by trying to get it again\r\n\t\tAssert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}\r\n\t}\r\n\tfinally\r\n\t{\r\n\t\t# cleanup the resource group that was used in case it still exists. This is a best effort task, we ignore failures here.\r\n\t\tInvoke-HandledCmdlet -Command {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures\r\n\t\tInvoke-HandledCmdlet -Command {Remove-AzureRmResourceGroup -Name $resourceGroupName -Force -ErrorAction SilentlyContinue} -IgnoreFailures\r\n\t}\r\n}\r\n\r\n<#\r\n.SYNOPSIS\r\nTests DataLakeStore Account Lifecycle Failure scenarios (Create, Update, Get, Delete).\r\n#>\r\nfunction Test-NegativeDataLakeStoreAccount\r\n{\r\n param\r\n\t(\r\n\t\t$location = \"West US\",\r\n\t\t$fakeaccountName = \"psfakedataLakeaccounttest\"\r\n\t)\r\n\t\r\n\ttry\r\n\t{\r\n\t\t# Creating Account\r\n\t\t$resourceGroupName = Get-ResourceGroupName\r\n\t\t$accountName = Get-DataLakeStoreAccountName\r\n\t\tNew-AzureRmResourceGroup -Name $resourceGroupName -Location $location\r\n\t\t$accountCreated = New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location\r\n \r\n\t\tAssert-AreEqual $accountName $accountCreated.Name\r\n\t\tAssert-AreEqual $location $accountCreated.Location\r\n\t\tAssert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountCreated.Type\r\n\t\tAssert-True {$accountCreated.Id -like \"*$resourceGroupName*\"}\r\n\r\n\t\t# In loop to check if account exists\r\n\t\tfor ($i = 0; $i -le 60; $i++)\r\n\t\t{\r\n \r\n\t\t\t[array]$accountGet = Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName\r\n\t\t\tif ($accountGet[0].Properties.ProvisioningState -like \"Succeeded\")\r\n\t\t\t{\r\n\t\t\t\tAssert-AreEqual $accountName $accountGet[0].Name\r\n\t\t\t\tAssert-AreEqual $location $accountGet[0].Location\r\n\t\t\t\tAssert-AreEqual \"Microsoft.DataLakeStore/accounts\" $accountGet[0].Type\r\n\t\t\t\tAssert-True {$accountGet[0].Id -like \"*$resourceGroupName*\"}\r\n\t\t\t\tbreak\r\n\t\t\t}\r\n\r\n\t\t\tWrite-Host \"account not yet provisioned. current state: $($accountGet[0].Properties.ProvisioningState)\"\r\n\t\t\t[Microsoft.WindowsAzure.Commands.Utilities.Common.TestMockSupport]::Delay(30000)\r\n\t\t\tAssert-False {$i -eq 60} \" Data Lake Store account not in succeeded state even after 30 min.\"\r\n\t\t}\r\n\r\n\t\t# attempt to recreate the already created account\r\n\t\tAssert-Throws {New-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Location $location}\r\n\r\n\t\t# attempt to update a non-existent account\r\n\t\t$tagsToUpdate = @{\"Name\" = \"TestTag\"; \"Value\" = \"TestUpdate\"}\r\n\t\tAssert-Throws {Set-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $fakeaccountName -Tags $tagsToUpdate}\r\n\r\n\t\t# attempt to get a non-existent account\r\n\t\tAssert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $fakeaccountName}\r\n\r\n\t\t# Delete Data Lake account\r\n\t\tAssert-True {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru} \"Remove Account failed.\"\r\n\r\n\t\t# Delete Data Lake account again should throw.\r\n\t\tAssert-Throws {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -PassThru}\r\n\r\n\t\t# Verify that it is gone by trying to get it again\r\n\t\tAssert-Throws {Get-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName}\r\n\t}\r\n\tfinally\r\n\t{\r\n\t\t# cleanup the resource group that was used in case it still exists. This is a best effort task, we ignore failures here.\r\n\t\tInvoke-HandledCmdlet -Command {Remove-AzureRmDataLakeStoreAccount -ResourceGroupName $resourceGroupName -Name $accountName -Force -ErrorAction SilentlyContinue} -IgnoreFailures\r\n\t\tInvoke-HandledCmdlet -Command {Remove-AzureRmResourceGroup -Name $resourceGroupName -Force -ErrorAction SilentlyContinue} -IgnoreFailures\r\n\t}\r\n",
"RequestHeaders": {
"Content-Type": [
"application/octet-stream"
],
"Content-Length": [
- "18295"
+ "20391"
],
- "Transfer-Encoding": [
- "chunked"
+ "x-ms-client-request-id": [
+ "c73728e8-237c-49a1-b5a6-ff744e308c76"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "",
@@ -2200,13 +2092,13 @@
"no-cache"
],
"x-ms-request-id": [
- "2b8b7799-2500-4ff1-ab0c-c0b87f9ecf7f"
+ "6aa83d20-ca1a-4dc3-b604-921a5ff395b8"
],
"ContentLength": [
"0"
],
"Server-Perf": [
- "[2b8b779925004ff1ab0cc0b87f9ecf7f][ AuthTime::1710.77910591262::PostAuthTime::34221.9975398996 ][FsDelete :: 00:00:011 ms]%0a[CleanCacheDelete :: 00:00:000 ms]%0a[Delete :: 00:00:012 ms]%0a[FsOpenStream :: 00:00:081 ms]%0a[Open :: 00:00:082 ms]%0a[FsAppendStream :: 00:00:268 ms]%0a[Write :: 00:00:424 ms]%0a[FsAppendStream :: 00:00:002 ms]%0a[FlushWrite :: 00:00:002 ms]%0a[CREATE :: 00:00:523 ms]%0a"
+ "[6aa83d20ca1a4dc3b604921a5ff395b8][ AuthTime::1610.69852821674::PostAuthTime::30486.083667363 ][FsDelete :: 00:00:008 ms]%0a[CleanCacheDelete :: 00:00:000 ms]%0a[Delete :: 00:00:009 ms]%0a[FsOpenStream :: 00:00:070 ms]%0a[Open :: 00:00:070 ms]%0a[FsAppendStream :: 00:00:142 ms]%0a[Write :: 00:00:143 ms]%0a[FsAppendStream :: 00:00:010 ms]%0a[FlushWrite :: 00:00:010 ms]%0a[CREATE :: 00:00:235 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2218,13 +2110,13 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:31 GMT"
+ "Fri, 26 Feb 2016 02:02:08 GMT"
],
"Location": [
- "https://testdatalake18228.azuredatalakestore.net/webhdfs/v1/adlspstestfolder/importfile.txt?op=CREATE&overwrite=true&write=true&api-version=2015-10-01-preview"
+ "https://onesdk3575.azuredatalakestore.net/webhdfs/v1/adlspstestfolder/importfile.txt?overwrite=true&op=CREATE&write=true&api-version=2015-10-01-preview"
],
"Set-Cookie": [
- "UserPrincipalSession=c02e6f2b-b914-46d3-8bef-03713798264f; path=/; secure; HttpOnly"
+ "UserPrincipalSession=4a407aa9-9b23-4d4f-a6f7-968656aba7a3; path=/; secure; HttpOnly"
]
},
"StatusCode": 201
@@ -2241,21 +2133,17 @@
"Content-Length": [
"1"
],
- "Transfer-Encoding": [
- "chunked"
+ "x-ms-client-request-id": [
+ "47bed4e7-c757-4399-9309-fb5611a7ddb5"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "",
@@ -2270,10 +2158,10 @@
"no-cache"
],
"x-ms-request-id": [
- "9a584a03-b5fd-4bcb-b971-7b00db323efa"
+ "9137b2f7-863c-44c3-83a0-bf7ed7a0aaad"
],
"Server-Perf": [
- "[9a584a03b5fd4bcbb9717b00db323efa][ AuthTime::801.500011120064::PostAuthTime::190.324175532779 ][GetCacheEntry :: 00:00:000 ms]%0a[FsOpenStream :: 00:00:037 ms]%0a[OpenNewHandle :: 00:00:037 ms]%0a[CreateCacheEntry :: 00:00:000 ms]%0a[GetOrCreateHandle :: 00:00:037 ms]%0a[Open :: 00:00:037 ms]%0a[FsGetStreamLength :: 00:00:009 ms]%0a[GetLength :: 00:00:009 ms]%0a[FsAppendStream :: 00:00:013 ms]%0a[Write :: 00:00:217 ms]%0a[FsAppendStream :: 00:00:002 ms]%0a[FlushWrite :: 00:00:002 ms]%0a[APPEND :: 00:00:269 ms]%0a"
+ "[9137b2f7863c44c383a0bf7ed7a0aaad][ AuthTime::836.998677567751::PostAuthTime::192.890344191648 ][GetCacheEntry :: 00:00:000 ms]%0a[FsOpenStream :: 00:00:042 ms]%0a[OpenNewHandle :: 00:00:042 ms]%0a[CreateCacheEntry :: 00:00:000 ms]%0a[GetOrCreateHandle :: 00:00:042 ms]%0a[Open :: 00:00:042 ms]%0a[FsGetStreamLength :: 00:00:008 ms]%0a[GetLength :: 00:00:008 ms]%0a[FsAppendStream :: 00:00:029 ms]%0a[Write :: 00:00:030 ms]%0a[FsAppendStream :: 00:00:009 ms]%0a[FlushWrite :: 00:00:009 ms]%0a[APPEND :: 00:00:092 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2285,84 +2173,28 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:31 GMT"
+ "Fri, 26 Feb 2016 02:02:09 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/webhdfs/v1/adlspstestfolder%2Fimportfile.txt.segments.2c6ebe0b-cad9-4fa2-a937-886f3e376953?op=GETFILESTATUS&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlciUyRmltcG9ydGZpbGUudHh0LnNlZ21lbnRzLjJjNmViZTBiLWNhZDktNGZhMi1hOTM3LTg4NmYzZTM3Njk1Mz9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/webhdfs/v1/adlspstestfolder%2Fconcatfile.txt?length=33554432&offset=0&op=OPEN&read=true&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlciUyRmNvbmNhdGZpbGUudHh0P2xlbmd0aD0zMzU1NDQzMiZvZmZzZXQ9MCZvcD1PUEVOJnJlYWQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
- ],
- "User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
- ]
- },
- "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder/importfile.txt.segments.2c6ebe0b-cad9-4fa2-a937-886f3e376953 [9e2cd3ab2538444eafd3e5d13c45a552]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "259"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "9e2cd3ab-2538-444e-afd3-e5d13c45a552"
- ],
- "Server-Perf": [
- "[9e2cd3ab2538444eafd3e5d13c45a552][ AuthTime::813.903159637931::PostAuthTime::187.330312097432 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:041 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:041 ms]%0a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "x-ms-client-request-id": [
+ "e4972050-4656-4a88-924b-7656dd01199d"
],
- "Cache-Control": [
- "no-cache"
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
],
- "Date": [
- "Thu, 19 Nov 2015 23:20:31 GMT"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/webhdfs/v1/adlspstestfolder%2Fconcatfile.txt?op=OPEN&offset=0&length=33554432&read=true&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlciUyRmNvbmNhdGZpbGUudHh0P29wPU9QRU4mb2Zmc2V0PTAmbGVuZ3RoPTMzNTU0NDMyJnJlYWQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "Test file content! @ Azure PsTest01?Test file content! @ Azure PsTest01?",
@@ -2380,10 +2212,10 @@
"chunked"
],
"x-ms-request-id": [
- "61e25466-ccaf-4535-8152-f63b09858063"
+ "6060f790-333b-404d-916c-a779a6ed1662"
],
"Server-Perf": [
- "[61e25466ccaf45358152f63b09858063][ AuthTime::835.715593238317::PostAuthTime::209.570440474296 ][GetCacheEntry :: 00:00:000 ms]%0a[FsOpenStream :: 00:00:207 ms]%0a[OpenNewHandle :: 00:00:207 ms]%0a[CreateCacheEntry :: 00:00:000 ms]%0a[GetOrCreateHandle :: 00:00:207 ms]%0a[Open :: 00:00:207 ms]%0a[FsReadStream :: 00:00:049 ms]%0a[OPEN :: 00:00:257 ms]%0a"
+ "[6060f790333b404d916ca779a6ed1662][ AuthTime::748.465858836773::PostAuthTime::176.637942685478 ][GetCacheEntry :: 00:00:000 ms]%0a[FsOpenStream :: 00:00:019 ms]%0a[OpenNewHandle :: 00:00:019 ms]%0a[CreateCacheEntry :: 00:00:000 ms]%0a[GetOrCreateHandle :: 00:00:019 ms]%0a[Open :: 00:00:019 ms]%0a[FsReadStream :: 00:00:042 ms]%0a[OPEN :: 00:00:062 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2395,29 +2227,28 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:32 GMT"
+ "Fri, 26 Feb 2016 02:02:09 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/webhdfs/v1/adlspstestfolder%2Fconcatfile.txt?op=RENAME&destination=adlspstestfolder%2Fmovefile.txt&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlciUyRmNvbmNhdGZpbGUudHh0P29wPVJFTkFNRSZkZXN0aW5hdGlvbj1hZGxzcHN0ZXN0Zm9sZGVyJTJGbW92ZWZpbGUudHh0JmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/webhdfs/v1/adlspstestfolder%2Fconcatfile.txt?destination=adlspstestfolder%2Fmovefile.txt&op=RENAME&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlciUyRmNvbmNhdGZpbGUudHh0P2Rlc3RpbmF0aW9uPWFkbHNwc3Rlc3Rmb2xkZXIlMkZtb3ZlZmlsZS50eHQmb3A9UkVOQU1FJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "c09b911f-3c58-4344-9c40-2e4b703c4e26"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "{\r\n \"boolean\": true\r\n}",
@@ -2435,10 +2266,10 @@
"no-cache"
],
"x-ms-request-id": [
- "f0570288-c31c-4c60-a7bf-6151626a23b9"
+ "6bf18f82-c9cd-4541-8586-f17a729ad914"
],
"Server-Perf": [
- "[f0570288c31c4c60a7bf6151626a23b9][ AuthTime::804.493874555411::PostAuthTime::183.053364332651 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:198 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[FsRename :: 00:00:089 ms]%0a[CleanCacheRename :: 00:00:000 ms]%0a[RENAME :: 00:00:287 ms]%0a"
+ "[6bf18f82c9cd45418586f17a729ad914][ AuthTime::809.198517096671::PostAuthTime::187.330312097432 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:031 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[FsRename :: 00:00:094 ms]%0a[CleanCacheRename :: 00:00:000 ms]%0a[RENAME :: 00:00:127 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2450,7 +2281,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:33 GMT"
+ "Fri, 26 Feb 2016 02:02:09 GMT"
]
},
"StatusCode": 200
@@ -2461,21 +2292,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "9f439880-667e-45d8-904a-f69a7c91527b"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 72,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1447975229210,\r\n \"modificationTime\": 1447975229540,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 72,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1456452127857,\r\n \"modificationTime\": 1456452127930,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"223"
@@ -2490,10 +2320,10 @@
"no-cache"
],
"x-ms-request-id": [
- "0833ff26-8f94-4f6f-998a-47b47c4b374d"
+ "521d93dc-73f8-4e80-898d-234bd75b1f00"
],
"Server-Perf": [
- "[0833ff268f944f6f998a47b47c4b374d][ AuthTime::807.487737990758::PostAuthTime::192.034954638692 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:047 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:047 ms]%0a"
+ "[521d93dc73f84e80898d234bd75b1f00][ AuthTime::778.832187966722::PostAuthTime::192.034954638692 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:048 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:048 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2505,7 +2335,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:33 GMT"
+ "Fri, 26 Feb 2016 02:02:10 GMT"
]
},
"StatusCode": 200
@@ -2516,21 +2346,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "8250add6-8cd8-4af6-b409-d6027cf259c7"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder/movefile.txt [c76cc02c35b5483faa3b6046619f9fd7]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestfolder/movefile.txt [b8a389cb06774e38b5c4ce11bd9b284b]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"211"
@@ -2545,10 +2374,10 @@
"no-cache"
],
"x-ms-request-id": [
- "c76cc02c-35b5-483f-aa3b-6046619f9fd7"
+ "b8a389cb-0677-4e38-b5c4-ce11bd9b284b"
],
"Server-Perf": [
- "[c76cc02c35b5483faa3b6046619f9fd7][ AuthTime::816.041633520322::PostAuthTime::190.324175532779 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:010 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:011 ms]%0a"
+ "[b8a389cb06774e38b5c4ce11bd9b284b][ AuthTime::790.80764170811::PostAuthTime::217.696641227381 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:006 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:007 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2560,29 +2389,28 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:35 GMT"
+ "Fri, 26 Feb 2016 02:02:12 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/webhdfs/v1/adlspstestfolder?op=RENAME&destination=adlspstestmovefolder&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlcj9vcD1SRU5BTUUmZGVzdGluYXRpb249YWRsc3BzdGVzdG1vdmVmb2xkZXImYXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/webhdfs/v1/adlspstestfolder?destination=adlspstestmovefolder&op=RENAME&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdGZvbGRlcj9kZXN0aW5hdGlvbj1hZGxzcHN0ZXN0bW92ZWZvbGRlciZvcD1SRU5BTUUmYXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "83d69410-4e06-41d8-914d-f0166c295667"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "{\r\n \"boolean\": true\r\n}",
@@ -2600,10 +2428,10 @@
"no-cache"
],
"x-ms-request-id": [
- "c5c90460-c368-4965-a6a2-17593c20fd6f"
+ "f5e187b9-2e2f-4a41-9599-74fe80691532"
],
"Server-Perf": [
- "[c5c90460c3684965a6a217593c20fd6f][ AuthTime::1730.02537085414::PostAuthTime::34475.1928475747 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:037 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[FsRename :: 00:00:093 ms]%0a[CleanCacheRename :: 00:00:000 ms]%0a[RENAME :: 00:00:131 ms]%0a"
+ "[f5e187b92e2f4a41959974fe80691532][ AuthTime::1676.13582901789::PostAuthTime::31185.3646269047 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:037 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[FsRename :: 00:00:094 ms]%0a[CleanCacheRename :: 00:00:000 ms]%0a[RENAME :: 00:00:133 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2615,10 +2443,10 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:34 GMT"
+ "Fri, 26 Feb 2016 02:02:10 GMT"
],
"Set-Cookie": [
- "UserPrincipalSession=c02e6f2b-b914-46d3-8bef-03713798264f; path=/; secure; HttpOnly"
+ "UserPrincipalSession=4a407aa9-9b23-4d4f-a6f7-968656aba7a3; path=/; secure; HttpOnly"
]
},
"StatusCode": 200
@@ -2629,21 +2457,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "c9d2fd31-bf0e-4737-a959-d355e4e73a13"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1447975225603,\r\n \"modificationTime\": 1447975233853,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1456452125496,\r\n \"modificationTime\": 1456452130636,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"227"
@@ -2658,10 +2485,10 @@
"no-cache"
],
"x-ms-request-id": [
- "8c7d2a46-acd3-4d0f-a5a0-0a59f1e97d22"
+ "75f3344c-303f-4688-8bfe-7c915f21c3ee"
],
"Server-Perf": [
- "[8c7d2a46acd34d0fa5a00a59f1e97d22][ AuthTime::796.795368578805::PostAuthTime::186.047227767998 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:227 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:227 ms]%0a"
+ "[75f3344c303f46888bfe7c915f21c3ee][ AuthTime::1055.12301357161::PostAuthTime::236.51521139242 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:066 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:066 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2673,7 +2500,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:34 GMT"
+ "Fri, 26 Feb 2016 02:02:10 GMT"
]
},
"StatusCode": 200
@@ -2684,21 +2511,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "68eb7f80-2636-4a4b-a69b-f8b4361baf90"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1447975225603,\r\n \"modificationTime\": 1447975235728,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1456452125496,\r\n \"modificationTime\": 1456452131839,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"227"
@@ -2713,10 +2539,10 @@
"no-cache"
],
"x-ms-request-id": [
- "3fecef9b-b072-4ddc-a396-a13762cd482e"
+ "6785a5e6-5c40-45c2-b436-2ca2358d24b3"
],
"Server-Perf": [
- "[3fecef9bb0724ddca396a13762cd482e][ AuthTime::1787.76416567869::PostAuthTime::34520.5284938814 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:055 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:055 ms]%0a"
+ "[6785a5e65c4045c2b4362ca2358d24b3][ AuthTime::1712.91757979501::PostAuthTime::31615.6255720418 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:044 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:044 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2728,10 +2554,10 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:35 GMT"
+ "Fri, 26 Feb 2016 02:02:12 GMT"
],
"Set-Cookie": [
- "UserPrincipalSession=c02e6f2b-b914-46d3-8bef-03713798264f; path=/; secure; HttpOnly"
+ "UserPrincipalSession=4a407aa9-9b23-4d4f-a6f7-968656aba7a3; path=/; secure; HttpOnly"
]
},
"StatusCode": 200
@@ -2742,21 +2568,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "28899655-7f38-46e5-8515-828e05bcb620"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestmovefolder [4c2fc81759fa4c49a85a1f9f4fc98687]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /adlspstestmovefolder [564d3028c1cd434ab4f6f6ba8b1b0760]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"202"
@@ -2771,10 +2596,10 @@
"no-cache"
],
"x-ms-request-id": [
- "4c2fc817-59fa-4c49-a85a-1f9f4fc98687"
+ "564d3028-c1cd-434a-b4f6-f6ba8b1b0760"
],
"Server-Perf": [
- "[4c2fc81759fa4c49a85a1f9f4fc98687][ AuthTime::784.819914837416::PostAuthTime::183.053364332651 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:155 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:156 ms]%0a"
+ "[564d3028c1cd434ab4f6f6ba8b1b0760][ AuthTime::834.86020368536::PostAuthTime::186.474922544476 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:035 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:035 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2786,7 +2611,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:36 GMT"
+ "Fri, 26 Feb 2016 02:02:12 GMT"
]
},
"StatusCode": 404
@@ -2797,21 +2622,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "d2f999db-c33a-4a35-a818-91b5157b29a4"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 72,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1447975229210,\r\n \"modificationTime\": 1447975229540,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 72,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1456452127857,\r\n \"modificationTime\": 1456452127930,\r\n \"replication\": 0,\r\n \"permission\": \"777\",\r\n \"owner\": \"NotSupportYet\",\r\n \"group\": \"NotSupportYet\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"223"
@@ -2826,10 +2650,10 @@
"no-cache"
],
"x-ms-request-id": [
- "890a011b-4790-49f6-9e5a-ef672a778977"
+ "d270bdda-545f-4a90-b186-600772b5b477"
],
"Server-Perf": [
- "[890a011b479049f69e5aef672a778977][ AuthTime::1742.00082459553::PostAuthTime::34687.7571514844 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:021 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:021 ms]%0a"
+ "[d270bdda545f4a90b186600772b5b477][ AuthTime::1678.70199767676::PostAuthTime::31272.6143613063 ][IsExist :: 00:00:000 ms]%0a[HdfsGetFileStatus :: 00:00:017 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETFILESTATUS :: 00:00:017 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2841,32 +2665,31 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:34 GMT"
+ "Fri, 26 Feb 2016 02:02:10 GMT"
],
"Set-Cookie": [
- "UserPrincipalSession=c02e6f2b-b914-46d3-8bef-03713798264f; path=/; secure; HttpOnly"
+ "UserPrincipalSession=4a407aa9-9b23-4d4f-a6f7-968656aba7a3; path=/; secure; HttpOnly"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/webhdfs/v1/adlspstestmovefolder%2Fmovefile.txt?op=DELETE&recursive=false&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdG1vdmVmb2xkZXIlMkZtb3ZlZmlsZS50eHQ/b3A9REVMRVRFJnJlY3Vyc2l2ZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/webhdfs/v1/adlspstestmovefolder%2Fmovefile.txt?recursive=false&op=DELETE&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdG1vdmVmb2xkZXIlMkZtb3ZlZmlsZS50eHQ/cmVjdXJzaXZlPWZhbHNlJm9wPURFTEVURSZhcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "068082c8-af2b-41ad-af43-5b31e9b28073"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "{\r\n \"boolean\": true\r\n}",
@@ -2884,10 +2707,10 @@
"no-cache"
],
"x-ms-request-id": [
- "e8284696-9a7c-43e7-9cd5-3235b1b066e4"
+ "2d20c155-fda8-46d6-be8a-4d966df2151c"
],
"Server-Perf": [
- "[e82846969a7c43e79cd53235b1b066e4][ AuthTime::811.336990979062::PostAuthTime::186.474922544476 ][FsDelete :: 00:00:230 ms]%0a[CleanCacheDelete :: 00:00:000 ms]%0a[Delete :: 00:00:230 ms]%0a[DELETE :: 00:00:230 ms]%0a"
+ "[2d20c155fda846d6be8a4d966df2151c][ AuthTime::793.373810366979::PostAuthTime::183.481059109129 ][FsDelete :: 00:00:256 ms]%0a[CleanCacheDelete :: 00:00:000 ms]%0a[Delete :: 00:00:257 ms]%0a[DELETE :: 00:00:257 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2899,29 +2722,28 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:35 GMT"
+ "Fri, 26 Feb 2016 02:02:12 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/webhdfs/v1/adlspstestmovefolder?op=DELETE&recursive=true&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdG1vdmVmb2xkZXI/b3A9REVMRVRFJnJlY3Vyc2l2ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/webhdfs/v1/adlspstestmovefolder?recursive=true&op=DELETE&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvYWRsc3BzdGVzdG1vdmVmb2xkZXI/cmVjdXJzaXZlPXRydWUmb3A9REVMRVRFJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "cbdccce1-1d57-4f1c-88f9-ac74c5d42d14"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "{\r\n \"boolean\": true\r\n}",
@@ -2939,10 +2761,10 @@
"no-cache"
],
"x-ms-request-id": [
- "1f295607-7655-4088-ac08-bcf77078cba2"
+ "bd0d22f2-1895-4b82-b509-aabfa72cb514"
],
"Server-Perf": [
- "[1f29560776554088ac08bcf77078cba2][ AuthTime::807.915432767237::PostAuthTime::181.770280003216 ][FsDelete :: 00:00:229 ms]%0a[CleanCacheDelete :: 00:00:000 ms]%0a[Delete : Recursive :: 00:00:229 ms]%0a[DELETE :: 00:00:229 ms]%0a"
+ "[bd0d22f218954b82b509aabfa72cb514][ AuthTime::787.386083496285::PostAuthTime::196.311902403474 ][FsDelete :: 00:00:260 ms]%0a[CleanCacheDelete :: 00:00:000 ms]%0a[Delete : Recursive :: 00:00:261 ms]%0a[DELETE :: 00:00:261 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2954,29 +2776,25 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:35 GMT"
+ "Fri, 26 Feb 2016 02:02:12 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg1316/providers/Microsoft.DataLakeStore/accounts/testdatalake18228?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0ZGF0YWxha2UxODIyOD9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk702/providers/Microsoft.DataLakeStore/accounts/onesdk3575?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazcwMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvb25lc2RrMzU3NT9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "fecadb6e-5f5a-4f88-b4ce-0225ccdcc048"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
"ResponseBody": "",
@@ -2991,16 +2809,16 @@
"no-cache"
],
"x-ms-request-id": [
- "50d8f7eb-1a94-45c5-b09c-359032833c45"
+ "e3353fe6-98c9-4d49-a0b3-682a964f1cbb"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "ff8f7952-494c-4651-bc59-c2a875f8a29f"
+ "b4393ca4-6983-4ecd-8a77-d022a9e9ebe9"
],
"x-ms-routing-request-id": [
- "WESTUS:20151119T232039Z:ff8f7952-494c-4651-bc59-c2a875f8a29f"
+ "WESTUS:20160226T020214Z:b4393ca4-6983-4ecd-8a77-d022a9e9ebe9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3009,7 +2827,7 @@
"no-cache"
],
"Date": [
- "Thu, 19 Nov 2015 23:20:39 GMT"
+ "Fri, 26 Feb 2016 02:02:13 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -3022,10 +2840,276 @@
]
},
"StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk702?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazcwMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "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": [
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "54d754e0-b617-442d-a83a-72e492638bb6"
+ ],
+ "x-ms-correlation-request-id": [
+ "54d754e0-b617-442d-a83a-72e492638bb6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T020215Z:54d754e0-b617-442d-a83a-72e492638bb6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:02:14 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNREl0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "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": [
+ "b627b7ea-9452-426b-8fbc-945ab65bbba7"
+ ],
+ "x-ms-correlation-request-id": [
+ "b627b7ea-9452-426b-8fbc-945ab65bbba7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T020215Z:b627b7ea-9452-426b-8fbc-945ab65bbba7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:02:14 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNREl0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "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": [
+ "14994"
+ ],
+ "x-ms-request-id": [
+ "6dd87e27-39a4-4a20-a6bb-798dc66cc280"
+ ],
+ "x-ms-correlation-request-id": [
+ "6dd87e27-39a4-4a20-a6bb-798dc66cc280"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T020230Z:6dd87e27-39a4-4a20-a6bb-798dc66cc280"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:02:30 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNREl0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "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": [
+ "14993"
+ ],
+ "x-ms-request-id": [
+ "f1f2e0b2-8022-4458-95b7-9f86c7aa0b2b"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1f2e0b2-8022-4458-95b7-9f86c7aa0b2b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T020246Z:f1f2e0b2-8022-4458-95b7-9f86c7aa0b2b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:02:45 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MDItRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNREl0UlVGVFZGVlRNaUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWek1pSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-request-id": [
+ "b9c28b00-187a-49d8-be40-aa6808e1026b"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9c28b00-187a-49d8-be40-aa6808e1026b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20160226T020301Z:b9c28b00-187a-49d8-be40-aa6808e1026b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:03:00 GMT"
+ ]
+ },
+ "StatusCode": 200
}
],
- "Names": {},
+ "Names": {
+ "Test-DataLakeStoreFileSystem": [
+ "onesdk702",
+ "onesdk3575"
+ ]
+ },
"Variables": {
- "SubscriptionId": "46153750-fa3b-4140-bf57-8beb7d5c971a"
+ "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestAdlsFileSystemPermissions.json b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestAdlsFileSystemPermissions.json
index 2bf7c08a6f88..a8c106f0363b 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestAdlsFileSystemPermissions.json
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestAdlsFileSystemPermissions.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/register?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -10,7 +10,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"640"
@@ -28,13 +28,13 @@
"1196"
],
"x-ms-request-id": [
- "9bd96a36-1cdc-4e64-8ec6-195ff41c6c4c"
+ "e7cb9527-77af-40b1-906d-63d44584acaa"
],
"x-ms-correlation-request-id": [
- "9bd96a36-1cdc-4e64-8ec6-195ff41c6c4c"
+ "e7cb9527-77af-40b1-906d-63d44584acaa"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001106Z:9bd96a36-1cdc-4e64-8ec6-195ff41c6c4c"
+ "WESTUS:20160226T020439Z:e7cb9527-77af-40b1-906d-63d44584acaa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,14 +43,14 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:11:06 GMT"
+ "Fri, 26 Feb 2016 02:04:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -58,7 +58,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"640"
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14872"
+ "14991"
],
"x-ms-request-id": [
- "d3d18f1c-085a-41e6-86b4-42f06d79d840"
+ "74e85c90-dc04-43c3-92b6-edf816b36bf8"
],
"x-ms-correlation-request-id": [
- "d3d18f1c-085a-41e6-86b4-42f06d79d840"
+ "74e85c90-dc04-43c3-92b6-edf816b36bf8"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001106Z:d3d18f1c-085a-41e6-86b4-42f06d79d840"
+ "WESTUS:20160226T020439Z:74e85c90-dc04-43c3-92b6-edf816b36bf8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,31 +91,25 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:11:06 GMT"
+ "Fri, 26 Feb 2016 02:04:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/datalakerg16582?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjU4Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk6317?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazYzMTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg16582\",\r\n \"name\": \"datalakerg16582\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "184"
+ "102"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,17 +120,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14990"
],
"x-ms-request-id": [
- "33014443-3184-4ae2-a123-7f7ace5e979d"
+ "a744bd54-427a-444f-ad5f-b55a4739a529"
],
"x-ms-correlation-request-id": [
- "33014443-3184-4ae2-a123-7f7ace5e979d"
+ "a744bd54-427a-444f-ad5f-b55a4739a529"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001107Z:33014443-3184-4ae2-a123-7f7ace5e979d"
+ "WESTUS:20160226T020444Z:a744bd54-427a-444f-ad5f-b55a4739a529"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,28 +142,25 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:11:07 GMT"
+ "Fri, 26 Feb 2016 02:04:44 GMT"
]
},
- "StatusCode": 201
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/datalakerg16582?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjU4Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk6317?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazYzMTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg16582\",\r\n \"name\": \"datalakerg16582\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "184"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "0"
],
"Expires": [
"-1"
@@ -175,16 +169,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14871"
+ "14988"
],
"x-ms-request-id": [
- "39f064bf-60ac-438a-a384-3ce095d5c955"
+ "33bf4c7b-7943-49fb-b0c3-1daf96d98088"
],
"x-ms-correlation-request-id": [
- "39f064bf-60ac-438a-a384-3ce095d5c955"
+ "33bf4c7b-7943-49fb-b0c3-1daf96d98088"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001107Z:39f064bf-60ac-438a-a384-3ce095d5c955"
+ "WESTUS:20160226T020547Z:33bf4c7b-7943-49fb-b0c3-1daf96d98088"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,35 +187,31 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:11:07 GMT"
+ "Fri, 26 Feb 2016 02:05:46 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 204
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg16582/providers/Microsoft.DataLakeStore/accounts/testdatalake11535?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjU4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MzU/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk6317?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazYzMTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "31"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake11535' under resource group 'datalakerg16582' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk6317\",\r\n \"name\": \"onesdk6317\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "169"
+ "174"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -232,17 +222,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
],
"x-ms-request-id": [
- "d5090f85-3207-46f1-b5c9-7843b6e9401c"
+ "ce7b1531-3a52-4cb9-b1d1-d7788ec996fc"
],
"x-ms-correlation-request-id": [
- "d5090f85-3207-46f1-b5c9-7843b6e9401c"
+ "ce7b1531-3a52-4cb9-b1d1-d7788ec996fc"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001119Z:d5090f85-3207-46f1-b5c9-7843b6e9401c"
+ "WESTUS:20160226T020446Z:ce7b1531-3a52-4cb9-b1d1-d7788ec996fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -251,35 +241,25 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:11:19 GMT"
+ "Fri, 26 Feb 2016 02:04:45 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg16582/providers/Microsoft.DataLakeStore/accounts/testdatalake11535?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjU4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MzU/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk6317/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazYzMTcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake11535' under resource group 'datalakerg16582' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "169"
+ "12"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -290,17 +270,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14989"
],
"x-ms-request-id": [
- "113f6ed9-186c-46ae-a93e-d98e0fc408fd"
+ "93fb5fd4-00d0-4497-8da4-af10963f8d2e"
],
"x-ms-correlation-request-id": [
- "113f6ed9-186c-46ae-a93e-d98e0fc408fd"
+ "93fb5fd4-00d0-4497-8da4-af10963f8d2e"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001119Z:113f6ed9-186c-46ae-a93e-d98e0fc408fd"
+ "WESTUS:20160226T020446Z:93fb5fd4-00d0-4497-8da4-af10963f8d2e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -309,38 +289,34 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:11:19 GMT"
+ "Fri, 26 Feb 2016 02:04:45 GMT"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg16582/providers/Microsoft.DataLakeStore/accounts/testdatalake11535?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjU4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MzU/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk6317/providers/Microsoft.DataLakeStore/accounts/onesdk5353?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazYzMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazUzNTM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "c53f6eaa-9e00-4fe0-8de9-2dde107a401e"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11535.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-20T00:11:22.1485203Z\",\r\n \"lastModifiedTime\": \"2015-11-20T00:11:22.1485203Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg16582/providers/Microsoft.DataLakeStore/accounts/testdatalake11535\",\r\n \"name\": \"testdatalake11535\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk5353' under resource group 'onesdk6317' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "468"
+ "157"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -348,17 +324,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "54b810a5-27d8-4943-bb89-e99b7b0ce52d"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14951"
+ "x-ms-request-id": [
+ "f405ff5c-ed7c-45dc-90c0-020ab27b830c"
],
"x-ms-correlation-request-id": [
- "2233ffa8-622e-4612-90b6-bc219ee3a9e5"
+ "f405ff5c-ed7c-45dc-90c0-020ab27b830c"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001203Z:2233ffa8-622e-4612-90b6-bc219ee3a9e5"
+ "WESTUS:20160226T020445Z:f405ff5c-ed7c-45dc-90c0-020ab27b830c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -367,47 +343,34 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:03 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:04:45 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg16582/providers/Microsoft.DataLakeStore/accounts/testdatalake11535?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjU4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MzU/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk6317/providers/Microsoft.DataLakeStore/accounts/onesdk5353?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazYzMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazUzNTM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "0ce10c80-0ef8-4280-b7ad-86dbca260c1d"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11535.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-20T00:11:22.1485203Z\",\r\n \"lastModifiedTime\": \"2015-11-20T00:11:22.1485203Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg16582/providers/Microsoft.DataLakeStore/accounts/testdatalake11535\",\r\n \"name\": \"testdatalake11535\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk5353' under resource group 'onesdk6317' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "468"
+ "157"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -415,17 +378,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "adea409a-429b-42f1-9d64-2178a4757834"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14950"
+ "x-ms-request-id": [
+ "2ed562f6-4d90-41be-ad95-4af59c23f6cb"
],
"x-ms-correlation-request-id": [
- "ccfa746c-396f-45ad-81de-3e89fe647970"
+ "2ed562f6-4d90-41be-ad95-4af59c23f6cb"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001203Z:ccfa746c-396f-45ad-81de-3e89fe647970"
+ "WESTUS:20160226T020445Z:2ed562f6-4d90-41be-ad95-4af59c23f6cb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -434,44 +397,25 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:03 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:04:45 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg16582/providers/Microsoft.DataLakeStore/accounts/testdatalake11535?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjU4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MzU/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk6317/providers/Microsoft.DataLakeStore/accounts/onesdk5353?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazYzMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazUzNTM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
- ],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11535.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-20T00:11:22.1485203Z\",\r\n \"lastModifiedTime\": \"2015-11-20T00:11:22.1485203Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg16582/providers/Microsoft.DataLakeStore/accounts/testdatalake11535\",\r\n \"name\": \"testdatalake11535\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk5353.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:04:49.4550185Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:04:49.4550185Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk6317/providers/Microsoft.DataLakeStore/accounts/onesdk5353\",\r\n \"name\": \"onesdk5353\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "468"
+ "488"
],
"Content-Type": [
"application/json"
@@ -483,16 +427,16 @@
"no-cache"
],
"x-ms-request-id": [
- "fdd0c40f-46e2-429f-8a4a-c452a0ef35cc"
+ "44c0692d-61ff-450b-abb1-17657f36a462"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14947"
+ "14971"
],
"x-ms-correlation-request-id": [
- "8bfc454c-15d3-4cbb-a2fe-64a18054fc43"
+ "5af3b453-8276-4044-af76-2591ff83cb8c"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001252Z:8bfc454c-15d3-4cbb-a2fe-64a18054fc43"
+ "WESTUS:20160226T020518Z:5af3b453-8276-4044-af76-2591ff83cb8c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -501,7 +445,7 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:52 GMT"
+ "Fri, 26 Feb 2016 02:05:17 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -516,32 +460,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg16582/providers/Microsoft.DataLakeStore/accounts/testdatalake11535?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjU4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MzU/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk6317/providers/Microsoft.DataLakeStore/accounts/onesdk5353?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazYzMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazUzNTM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "c0754b29-adef-4ada-bd21-9b37febc5441"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake11535' under resource group 'datalakerg16582' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk5353.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:04:49.4550185Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:04:49.4550185Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk6317/providers/Microsoft.DataLakeStore/accounts/onesdk5353\",\r\n \"name\": \"onesdk5353\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "169"
+ "488"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -549,17 +489,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
- ],
"x-ms-request-id": [
- "389215f4-399e-4154-b168-69810cec6398"
+ "05c22169-df74-45d2-9e4b-d6d0d647810d"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14970"
],
"x-ms-correlation-request-id": [
- "389215f4-399e-4154-b168-69810cec6398"
+ "5940d259-4c69-463e-9321-f4c244031a18"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001254Z:389215f4-399e-4154-b168-69810cec6398"
+ "WESTUS:20160226T020518Z:5940d259-4c69-463e-9321-f4c244031a18"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -568,44 +508,40 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:54 GMT"
+ "Fri, 26 Feb 2016 02:05:17 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg16582/providers/Microsoft.DataLakeStore/accounts/testdatalake11535?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjU4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MzU/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"testdatalake11535\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk6317/providers/Microsoft.DataLakeStore/accounts/onesdk5353?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazYzMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazUzNTM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "194"
+ "x-ms-client-request-id": [
+ "8da870b2-6b99-4499-8d8f-8eb203a7edf9"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
- ],
- "x-ms-client-request-id": [
- "c7d20fde-fbce-4027-ac57-fc5eba61cd77"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg16582/providers/Microsoft.DataLakeStore/accounts/testdatalake11535\",\r\n \"name\": \"testdatalake11535\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk5353.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:04:49.4550185Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:04:49.4550185Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk6317/providers/Microsoft.DataLakeStore/accounts/onesdk5353\",\r\n \"name\": \"onesdk5353\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "407"
+ "488"
],
"Content-Type": [
"application/json"
@@ -616,23 +552,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "10"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/dd404d9a-545f-45c8-baa1-04da107618f70?api-version=2015-10-01-preview&expanded=true"
- ],
"x-ms-request-id": [
- "3f2edff5-e8a5-46e9-8ab2-2dbe7d8d60c9"
+ "27f656aa-1c70-4957-ae35-6ab51b358135"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14969"
],
"x-ms-correlation-request-id": [
- "da6cbf43-3d00-4b78-9158-a30346706fd8"
+ "c995ea27-50ca-4f32-b96c-37b00d9fa5e5"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001121Z:da6cbf43-3d00-4b78-9158-a30346706fd8"
+ "WESTUS:20160226T020544Z:c995ea27-50ca-4f32-b96c-37b00d9fa5e5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -641,10 +571,7 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:11:21 GMT"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourcegroups/datalakerg16582/providers/Microsoft.DataLakeStore/accounts/testdatalake11535/operationresults/0?api-version=2015-10-01-preview"
+ "Fri, 26 Feb 2016 02:05:44 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -656,28 +583,31 @@
"ASP.NET"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/dd404d9a-545f-45c8-baa1-04da107618f70?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2RkNDA0ZDlhLTU0NWYtNDVjOC1iYWExLTA0ZGExMDc2MThmNzA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk6317/providers/Microsoft.DataLakeStore/accounts/onesdk5353?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazYzMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazUzNTM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "e664110c-8a05-406b-bb6d-ed1489fbb880"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk5353' under resource group 'onesdk6317' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "157"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -685,17 +615,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "ad04f836-b09f-4ad1-83f3-4ae9c5ccfd19"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14955"
+ "x-ms-request-id": [
+ "7f9b8f94-6d2c-4bdc-aa7e-78fbc9094177"
],
"x-ms-correlation-request-id": [
- "2407aac5-9c45-42f9-b8c0-cb3e780ecc72"
+ "7f9b8f94-6d2c-4bdc-aa7e-78fbc9094177"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001122Z:2407aac5-9c45-42f9-b8c0-cb3e780ecc72"
+ "WESTUS:20160226T020546Z:7f9b8f94-6d2c-4bdc-aa7e-78fbc9094177"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -704,40 +634,34 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:11:21 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:05:46 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/dd404d9a-545f-45c8-baa1-04da107618f70?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2RkNDA0ZDlhLTU0NWYtNDVjOC1iYWExLTA0ZGExMDc2MThmNzA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk6317/providers/Microsoft.DataLakeStore/accounts/onesdk5353?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazYzMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazUzNTM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "48d17299-a8a1-4535-bfb1-a8127416164c"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk5353' under resource group 'onesdk6317' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "157"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -745,17 +669,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "5111534d-7bb9-4f07-b928-039e4d14c2b7"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14954"
+ "x-ms-request-id": [
+ "66593168-0517-42b1-886c-cae100b8300b"
],
"x-ms-correlation-request-id": [
- "3c3d9b21-4e80-4465-a1a1-9b9c73fb2993"
+ "66593168-0517-42b1-886c-cae100b8300b"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001132Z:3c3d9b21-4e80-4465-a1a1-9b9c73fb2993"
+ "WESTUS:20160226T020546Z:66593168-0517-42b1-886c-cae100b8300b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -764,37 +688,37 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:11:31 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:05:46 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/dd404d9a-545f-45c8-baa1-04da107618f70?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2RkNDA0ZDlhLTU0NWYtNDVjOC1iYWExLTA0ZGExMDc2MThmNzA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk6317/providers/Microsoft.DataLakeStore/accounts/onesdk5353?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazYzMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazUzNTM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"onesdk5353\",\r\n \"tags\": {},\r\n \"properties\": {}\r\n}",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "92"
+ ],
+ "x-ms-client-request-id": [
+ "7cba9874-9897-4e81-a5d4-21a4642a5ec0"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk6317/providers/Microsoft.DataLakeStore/accounts/onesdk5353\",\r\n \"name\": \"onesdk5353\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "354"
],
"Content-Type": [
"application/json"
@@ -805,17 +729,23 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "10"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/584a5244-591b-4e32-acce-9276218dd6f00?api-version=2015-10-01-preview&expanded=true"
+ ],
"x-ms-request-id": [
- "633a02b0-fa41-46b8-842f-6331e51f04d4"
+ "559a8d98-3de2-443f-be7d-5ed57d9ff1a0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14953"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1190"
],
"x-ms-correlation-request-id": [
- "4cc3579b-0596-40ff-863b-6c2ff6b711c5"
+ "e3696254-e03c-4fa9-b978-30efd8cc4414"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001148Z:4cc3579b-0596-40ff-863b-6c2ff6b711c5"
+ "WESTUS:20160226T020447Z:e3696254-e03c-4fa9-b978-30efd8cc4414"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -824,7 +754,10 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:11:48 GMT"
+ "Fri, 26 Feb 2016 02:04:46 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk6317/providers/Microsoft.DataLakeStore/accounts/onesdk5353/operationresults/0?api-version=2015-10-01-preview"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -836,19 +769,16 @@
"ASP.NET"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/dd404d9a-545f-45c8-baa1-04da107618f70?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2RkNDA0ZDlhLTU0NWYtNDVjOC1iYWExLTA0ZGExMDc2MThmNzA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/584a5244-591b-4e32-acce-9276218dd6f00?api-version=2015-10-01-preview&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzU4NGE1MjQ0LTU5MWItNGUzMi1hY2NlLTkyNzYyMThkZDZmMDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -866,16 +796,16 @@
"no-cache"
],
"x-ms-request-id": [
- "444634d2-dc38-4743-a364-ac5d7d7b160c"
+ "0aed755e-77dd-46cf-bc8c-715325273be1"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14952"
+ "14972"
],
"x-ms-correlation-request-id": [
- "c97919aa-fa77-45cb-9ecd-ca7b60ad99e0"
+ "7701e870-7686-4841-8b18-26d300bd46c4"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001203Z:c97919aa-fa77-45cb-9ecd-ca7b60ad99e0"
+ "WESTUS:20160226T020517Z:7701e870-7686-4841-8b18-26d300bd46c4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -884,7 +814,7 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:03 GMT"
+ "Fri, 26 Feb 2016 02:05:17 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -904,21 +834,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "f8ef0c25-4f7d-4e1f-b790-870680d33fd1"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\",\r\n \"mask::rwx\",\r\n \"default:user::rwx\",\r\n \"default:group::rwx\",\r\n \"default:other::---\",\r\n \"default:mask::rwx\"\r\n ],\r\n \"owner\": \"f5181084-3fee-489a-9278-85f6fc92c3bb\",\r\n \"group\": \"f5181084-3fee-489a-9278-85f6fc92c3bb\",\r\n \"stickyBit\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\",\r\n \"mask::rwx\",\r\n \"default:user::rwx\",\r\n \"default:group::rwx\",\r\n \"default:other::---\",\r\n \"default:mask::rwx\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"stickyBit\": false\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"271"
@@ -933,10 +862,10 @@
"no-cache"
],
"x-ms-request-id": [
- "20b0b0d4-4aff-46e8-9ba2-765a27c6d37a"
+ "644b4f75-21f5-4b0f-abb4-dfc83119c7e5"
],
"Server-Perf": [
- "[20b0b0d44aff46e89ba2765a27c6d37a][ AuthTime::1760.38944125598::PostAuthTime::1523084.58209355 ][HdfsGetAclStatus :: 00:00:046 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETACLSTATUS :: 00:00:046 ms]%0a"
+ "[644b4f7521f54b0fabb4dfc83119c7e5][ AuthTime::1722.35043736666::PostAuthTime::31040.8009293079 ][HdfsGetAclStatus :: 00:00:084 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETACLSTATUS :: 00:00:084 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -948,10 +877,10 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:07 GMT"
+ "Fri, 26 Feb 2016 02:05:20 GMT"
],
"Set-Cookie": [
- "UserPrincipalSession=e2ed4dc4-186e-4bd6-b934-4f3726392838; path=/; secure; HttpOnly"
+ "UserPrincipalSession=f9420469-50c0-4c0d-8be4-c64a3d178e80; path=/; secure; HttpOnly"
]
},
"StatusCode": 200
@@ -962,21 +891,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "f76e19ce-7f63-4fc8-960c-03dcc72e8df8"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\",\r\n \"mask::rwx\",\r\n \"default:user::rwx\",\r\n \"default:group::rwx\",\r\n \"default:other::---\",\r\n \"default:mask::rwx\",\r\n \"user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx\"\r\n ],\r\n \"owner\": \"f5181084-3fee-489a-9278-85f6fc92c3bb\",\r\n \"group\": \"f5181084-3fee-489a-9278-85f6fc92c3bb\",\r\n \"stickyBit\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\",\r\n \"mask::rwx\",\r\n \"default:user::rwx\",\r\n \"default:group::rwx\",\r\n \"default:other::---\",\r\n \"default:mask::rwx\",\r\n \"user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"stickyBit\": false\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"319"
@@ -991,10 +919,10 @@
"no-cache"
],
"x-ms-request-id": [
- "58720262-273a-4a00-8a72-893c3f8adb14"
+ "9f17b6dd-72b3-476b-a2d9-855a536b14ed"
],
"Server-Perf": [
- "[58720262273a4a008a72893c3f8adb14][ AuthTime::793.372792402782::PostAuthTime::183.053129460049 ][HdfsGetAclStatus :: 00:00:036 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETACLSTATUS :: 00:00:037 ms]%0a"
+ "[9f17b6dd72b3476ba2d9855a536b14ed][ AuthTime::833.58852804262::PostAuthTime::198.880792991184 ][HdfsGetAclStatus :: 00:00:026 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETACLSTATUS :: 00:00:026 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1006,7 +934,7 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:08 GMT"
+ "Fri, 26 Feb 2016 02:05:21 GMT"
]
},
"StatusCode": 200
@@ -1017,21 +945,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "ea4e6e19-8d16-4a14-bfb5-0d249bb51ed9"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\",\r\n \"mask::rwx\",\r\n \"default:user::rwx\",\r\n \"default:group::rwx\",\r\n \"default:other::---\",\r\n \"default:mask::rwx\"\r\n ],\r\n \"owner\": \"f5181084-3fee-489a-9278-85f6fc92c3bb\",\r\n \"group\": \"f5181084-3fee-489a-9278-85f6fc92c3bb\",\r\n \"stickyBit\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\",\r\n \"mask::rwx\",\r\n \"default:user::rwx\",\r\n \"default:group::rwx\",\r\n \"default:other::---\",\r\n \"default:mask::rwx\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"stickyBit\": false\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"271"
@@ -1046,10 +973,10 @@
"no-cache"
],
"x-ms-request-id": [
- "f51d489d-b7e6-4e6f-87c9-c3b9b821504f"
+ "63df1f15-6b84-4850-9dc1-65a51180d172"
],
"Server-Perf": [
- "[f51d489db7e64e6f87c9c3b9b821504f][ AuthTime::787.812767442547::PostAuthTime::179.631575638366 ][HdfsGetAclStatus :: 00:00:030 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETACLSTATUS :: 00:00:030 ms]%0a"
+ "[63df1f156b8448509dc165a51180d172][ AuthTime::817.763604729343::PostAuthTime::193.748385430121 ][HdfsGetAclStatus :: 00:00:014 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETACLSTATUS :: 00:00:014 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1061,7 +988,7 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:09 GMT"
+ "Fri, 26 Feb 2016 02:05:22 GMT"
]
},
"StatusCode": 200
@@ -1072,21 +999,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "6982ded4-e42e-4189-b0a4-f9ea7362213f"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\",\r\n \"mask::rwx\",\r\n \"default:user::rwx\",\r\n \"default:group::rwx\",\r\n \"default:other::---\",\r\n \"default:mask::rwx\",\r\n \"user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx\"\r\n ],\r\n \"owner\": \"f5181084-3fee-489a-9278-85f6fc92c3bb\",\r\n \"group\": \"f5181084-3fee-489a-9278-85f6fc92c3bb\",\r\n \"stickyBit\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\",\r\n \"mask::rwx\",\r\n \"default:user::rwx\",\r\n \"default:group::rwx\",\r\n \"default:other::---\",\r\n \"default:mask::rwx\",\r\n \"user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"stickyBit\": false\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"319"
@@ -1101,10 +1027,10 @@
"no-cache"
],
"x-ms-request-id": [
- "b03b444c-7a81-43a1-94fe-2d588b95bf4e"
+ "ab55e1d7-ac1e-4c74-ba1c-ec47d2da06c1"
],
"Server-Perf": [
- "[b03b444c7a8143a194fe2d588b95bf4e][ AuthTime::795.083569313624::PostAuthTime::186.046989054022 ][HdfsGetAclStatus :: 00:00:090 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETACLSTATUS :: 00:00:090 ms]%0a"
+ "[ab55e1d7ac1e4c74ba1cec47d2da06c1][ AuthTime::786.541458732877::PostAuthTime::187.332875978793 ][HdfsGetAclStatus :: 00:00:034 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETACLSTATUS :: 00:00:034 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1116,7 +1042,7 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:09 GMT"
+ "Fri, 26 Feb 2016 02:05:22 GMT"
]
},
"StatusCode": 200
@@ -1127,21 +1053,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "712d7956-cc57-42a3-8e7f-c82a36b77ce4"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\",\r\n \"mask::rwx\",\r\n \"default:user::rwx\",\r\n \"default:group::rwx\",\r\n \"default:other::---\",\r\n \"default:mask::rwx\"\r\n ],\r\n \"owner\": \"f5181084-3fee-489a-9278-85f6fc92c3bb\",\r\n \"group\": \"f5181084-3fee-489a-9278-85f6fc92c3bb\",\r\n \"stickyBit\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\",\r\n \"mask::rwx\",\r\n \"default:user::rwx\",\r\n \"default:group::rwx\",\r\n \"default:other::---\",\r\n \"default:mask::rwx\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"stickyBit\": false\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"271"
@@ -1156,10 +1081,10 @@
"no-cache"
],
"x-ms-request-id": [
- "257e2f4f-d428-4bfd-b3e7-c72bb43131ea"
+ "7faa8f36-ad10-46a4-93d0-94fdbc1c34e7"
],
"Server-Perf": [
- "[257e2f4fd4284bfdb3e7c72bb43131ea][ AuthTime::738.200237028141::PostAuthTime::174.499244905841 ][HdfsGetAclStatus :: 00:00:039 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETACLSTATUS :: 00:00:039 ms]%0a"
+ "[7faa8f36ad1046a493d094fdbc1c34e7][ AuthTime::757.030115256766::PostAuthTime::195.886888580564 ][HdfsGetAclStatus :: 00:00:027 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETACLSTATUS :: 00:00:027 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1171,7 +1096,7 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:10 GMT"
+ "Fri, 26 Feb 2016 02:05:22 GMT"
]
},
"StatusCode": 200
@@ -1182,21 +1107,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "c435d561-688e-4916-b4ec-1685c752329e"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\",\r\n \"mask::rwx\",\r\n \"default:user::rwx\",\r\n \"default:group::rwx\",\r\n \"default:other::---\",\r\n \"default:mask::rwx\",\r\n \"user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx\"\r\n ],\r\n \"owner\": \"f5181084-3fee-489a-9278-85f6fc92c3bb\",\r\n \"group\": \"f5181084-3fee-489a-9278-85f6fc92c3bb\",\r\n \"stickyBit\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\",\r\n \"mask::rwx\",\r\n \"default:user::rwx\",\r\n \"default:group::rwx\",\r\n \"default:other::---\",\r\n \"default:mask::rwx\",\r\n \"user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"stickyBit\": false\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"319"
@@ -1211,10 +1135,10 @@
"no-cache"
],
"x-ms-request-id": [
- "116ba120-1c91-4b22-8b0c-ed914f1d8027"
+ "85e8cdec-96f3-4e07-ad7d-fb1a52cb46cf"
],
"Server-Perf": [
- "[116ba1201c914b228b0ced914f1d8027][ AuthTime::733.923294751037::PostAuthTime::171.505385311868 ][HdfsGetAclStatus :: 00:00:026 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETACLSTATUS :: 00:00:026 ms]%0a"
+ "[85e8cdec96f34e07ad7dfb1a52cb46cf][ AuthTime::771.999637309866::PostAuthTime::181.345067157553 ][HdfsGetAclStatus :: 00:00:027 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETACLSTATUS :: 00:00:027 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1226,7 +1150,7 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:10 GMT"
+ "Fri, 26 Feb 2016 02:05:22 GMT"
]
},
"StatusCode": 200
@@ -1237,21 +1161,20 @@
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "709346a7-aaac-43c0-9e3f-0bccce3d4ffc"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\",\r\n \"mask::rwx\",\r\n \"default:user::rwx\",\r\n \"default:group::rwx\",\r\n \"default:other::---\",\r\n \"default:mask::rwx\"\r\n ],\r\n \"owner\": \"f5181084-3fee-489a-9278-85f6fc92c3bb\",\r\n \"group\": \"f5181084-3fee-489a-9278-85f6fc92c3bb\",\r\n \"stickyBit\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\",\r\n \"mask::rwx\",\r\n \"default:user::rwx\",\r\n \"default:group::rwx\",\r\n \"default:other::---\",\r\n \"default:mask::rwx\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"stickyBit\": false\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"271"
@@ -1266,10 +1189,10 @@
"no-cache"
],
"x-ms-request-id": [
- "a6be20fe-7251-47c1-9795-35b001cf41dd"
+ "fbbb783e-c98b-4a03-b3fc-34a9a5d58516"
],
"Server-Perf": [
- "[a6be20fe725147c1979535b001cf41dd][ AuthTime::783.535825165443::PostAuthTime::175.354633361262 ][HdfsGetAclStatus :: 00:00:098 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETACLSTATUS :: 00:00:098 ms]%0a"
+ "[fbbb783ec98b4a03b3fc34a9a5d58516][ AuthTime::842.997941904568::PostAuthTime::199.308493621273 ][HdfsGetAclStatus :: 00:00:026 ms]%0a[SS Response Process :: 00:00:000 ms]%0a[GETACLSTATUS :: 00:00:027 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1281,29 +1204,28 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:10 GMT"
+ "Fri, 26 Feb 2016 02:05:23 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/webhdfs/v1/?op=SETACL&aclspec=user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx%2Cmask::rwx%2Cother::---%2Cuser::rwx%2Cgroup::rwx%2Cdefault:user::rwx%2Cdefault:group::rwx&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvP29wPVNFVEFDTCZhY2xzcGVjPXVzZXIlM0EwMjdjMjhkNS1jOTFkLTQ5ZjAtOThjNS1kMTAxMzRiMTY5YjMlM0Fyd3glMkNtYXNrJTNBJTNBcnd4JTJDb3RoZXIlM0ElM0EtLS0lMkN1c2VyJTNBJTNBcnd4JTJDZ3JvdXAlM0ElM0Fyd3glMkNkZWZhdWx0JTNBdXNlciUzQSUzQXJ3eCUyQ2RlZmF1bHQlM0Fncm91cCUzQSUzQXJ3eCZhcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/webhdfs/v1/?aclspec=user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx%2Cmask::rwx%2Cother::---%2Cuser::rwx%2Cgroup::rwx%2Cdefault:user::rwx%2Cdefault:group::rwx&op=SETACL&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvP2FjbHNwZWM9dXNlciUzQTAyN2MyOGQ1LWM5MWQtNDlmMC05OGM1LWQxMDEzNGIxNjliMyUzQXJ3eCUyQ21hc2slM0ElM0Fyd3glMkNvdGhlciUzQSUzQS0tLSUyQ3VzZXIlM0ElM0Fyd3glMkNncm91cCUzQSUzQXJ3eCUyQ2RlZmF1bHQlM0F1c2VyJTNBJTNBcnd4JTJDZGVmYXVsdCUzQWdyb3VwJTNBJTNBcnd4Jm9wPVNFVEFDTCZhcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "c303fb5d-e1b8-4e11-8f3a-8df6a8a4ab25"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "",
@@ -1318,13 +1240,13 @@
"no-cache"
],
"x-ms-request-id": [
- "8761d1eb-c191-46d5-bd43-478e4458f25b"
+ "6e599d69-66b2-492a-9950-c273213ce9f0"
],
"ContentLength": [
"0"
],
"Server-Perf": [
- "[8761d1ebc19146d5bd43478e4458f25b][ AuthTime::886.182439815938::PostAuthTime::198.022427429913 ][SETACL :: 00:00:688 ms]%0a"
+ "[6e599d6966b2492a9950c273213ce9f0][ AuthTime::840.859438754125::PostAuthTime::196.742289840741 ][SETACL :: 00:00:941 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1336,29 +1258,28 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:07 GMT"
+ "Fri, 26 Feb 2016 02:05:21 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/webhdfs/v1/?op=SETACL&aclspec=mask::rwx%2Cother::---%2Cuser::rwx%2Cgroup::rwx%2Cdefault:user::rwx%2Cdefault:group::rwx&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvP29wPVNFVEFDTCZhY2xzcGVjPW1hc2slM0ElM0Fyd3glMkNvdGhlciUzQSUzQS0tLSUyQ3VzZXIlM0ElM0Fyd3glMkNncm91cCUzQSUzQXJ3eCUyQ2RlZmF1bHQlM0F1c2VyJTNBJTNBcnd4JTJDZGVmYXVsdCUzQWdyb3VwJTNBJTNBcnd4JmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/webhdfs/v1/?aclspec=mask::rwx%2Cother::---%2Cuser::rwx%2Cgroup::rwx%2Cdefault:user::rwx%2Cdefault:group::rwx&op=SETACL&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvP2FjbHNwZWM9bWFzayUzQSUzQXJ3eCUyQ290aGVyJTNBJTNBLS0tJTJDdXNlciUzQSUzQXJ3eCUyQ2dyb3VwJTNBJTNBcnd4JTJDZGVmYXVsdCUzQXVzZXIlM0ElM0Fyd3glMkNkZWZhdWx0JTNBZ3JvdXAlM0ElM0Fyd3gmb3A9U0VUQUNMJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "80bf0fba-c60b-43ea-91c8-0bf7c0a80679"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "",
@@ -1373,13 +1294,13 @@
"no-cache"
],
"x-ms-request-id": [
- "cf73f621-2ce1-48c7-846c-5489f0442252"
+ "31223137-4f60-484b-8d25-f599704a372d"
],
"ContentLength": [
"0"
],
"Server-Perf": [
- "[cf73f6212ce148c7846c5489f0442252][ AuthTime::764.717279146186::PostAuthTime::193.745485152809 ][SETACL :: 00:00:909 ms]%0a"
+ "[312231374f60484b8d25f599704a372d][ AuthTime::802.794082676243::PostAuthTime::189.899079759324 ][SETACL :: 00:00:628 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1391,29 +1312,28 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:09 GMT"
+ "Fri, 26 Feb 2016 02:05:22 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/webhdfs/v1/?op=MODIFYACLENTRIES&aclspec=user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvP29wPU1PRElGWUFDTEVOVFJJRVMmYWNsc3BlYz11c2VyJTNBMDI3YzI4ZDUtYzkxZC00OWYwLTk4YzUtZDEwMTM0YjE2OWIzJTNBcnd4JmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/webhdfs/v1/?aclspec=user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx&op=MODIFYACLENTRIES&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvP2FjbHNwZWM9dXNlciUzQTAyN2MyOGQ1LWM5MWQtNDlmMC05OGM1LWQxMDEzNGIxNjliMyUzQXJ3eCZvcD1NT0RJRllBQ0xFTlRSSUVTJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "906b3706-b0cc-4514-808f-4dfb7089d422"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "",
@@ -1428,13 +1348,13 @@
"no-cache"
],
"x-ms-request-id": [
- "b8ce51fd-ef4c-4d1e-b74b-133931bc606e"
+ "f37fa8ab-c8ce-4b90-ab76-0b2df88f3acb"
],
"ContentLength": [
"0"
],
"Server-Perf": [
- "[b8ce51fdef4c4d1eb74b133931bc606e][ AuthTime::727.507881335381::PostAuthTime::172.360773767289 ][MODIFYACLENTRIES :: 00:00:078 ms]%0a"
+ "[f37fa8abc8ce4b90ab760b2df88f3acb][ AuthTime::756.602414626677::PostAuthTime::194.17608606021 ][MODIFYACLENTRIES :: 00:00:046 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1446,29 +1366,28 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:09 GMT"
+ "Fri, 26 Feb 2016 02:05:22 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/webhdfs/v1/?op=MODIFYACLENTRIES&aclspec=user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvP29wPU1PRElGWUFDTEVOVFJJRVMmYWNsc3BlYz11c2VyJTNBMDI3YzI4ZDUtYzkxZC00OWYwLTk4YzUtZDEwMTM0YjE2OWIzJTNBcnd4JmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/webhdfs/v1/?aclspec=user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx&op=MODIFYACLENTRIES&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvP2FjbHNwZWM9dXNlciUzQTAyN2MyOGQ1LWM5MWQtNDlmMC05OGM1LWQxMDEzNGIxNjliMyUzQXJ3eCZvcD1NT0RJRllBQ0xFTlRSSUVTJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "259052aa-0201-422e-875a-f4504a51508a"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "",
@@ -1483,13 +1402,13 @@
"no-cache"
],
"x-ms-request-id": [
- "b5c0499a-b019-47b8-9989-39af382ccd8e"
+ "6e0d432a-33b8-4de6-8242-dd12570f59e2"
],
"ContentLength": [
"0"
],
"Server-Perf": [
- "[b5c0499ab01947b8998939af382ccd8e][ AuthTime::724.941715969119::PostAuthTime::178.776187182945 ][MODIFYACLENTRIES :: 00:00:050 ms]%0a"
+ "[6e0d432a33b84de68242dd12570f59e2][ AuthTime::848.985750725808::PostAuthTime::198.453092361096 ][MODIFYACLENTRIES :: 00:00:058 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1501,29 +1420,28 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:10 GMT"
+ "Fri, 26 Feb 2016 02:05:22 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/webhdfs/v1/?op=REMOVEACLENTRIES&aclspec=user:027c28d5-c91d-49f0-98c5-d10134b169b3&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvP29wPVJFTU9WRUFDTEVOVFJJRVMmYWNsc3BlYz11c2VyJTNBMDI3YzI4ZDUtYzkxZC00OWYwLTk4YzUtZDEwMTM0YjE2OWIzJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/webhdfs/v1/?aclspec=user:027c28d5-c91d-49f0-98c5-d10134b169b3&op=REMOVEACLENTRIES&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvP2FjbHNwZWM9dXNlciUzQTAyN2MyOGQ1LWM5MWQtNDlmMC05OGM1LWQxMDEzNGIxNjliMyZvcD1SRU1PVkVBQ0xFTlRSSUVTJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "96119292-84b8-4bb4-ac28-4d10a00b0cef"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "",
@@ -1538,13 +1456,13 @@
"no-cache"
],
"x-ms-request-id": [
- "b223ebb5-a2d1-4a02-932f-bbb60b0e257e"
+ "74fd6792-abea-4e38-b310-090db8886958"
],
"ContentLength": [
"0"
],
"Server-Perf": [
- "[b223ebb5a2d14a02932fbbb60b0e257e][ AuthTime::751.886452314874::PostAuthTime::169.366914173316 ][REMOVEACLENTRIES :: 00:00:058 ms]%0a"
+ "[74fd6792abea4e38b310090db8886958][ AuthTime::737.355886272692::PostAuthTime::184.338971568173 ][REMOVEACLENTRIES :: 00:00:075 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1556,29 +1474,28 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:09 GMT"
+ "Fri, 26 Feb 2016 02:05:22 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/webhdfs/v1/?op=REMOVEACLENTRIES&aclspec=user:027c28d5-c91d-49f0-98c5-d10134b169b3&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvP29wPVJFTU9WRUFDTEVOVFJJRVMmYWNsc3BlYz11c2VyJTNBMDI3YzI4ZDUtYzkxZC00OWYwLTk4YzUtZDEwMTM0YjE2OWIzJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/webhdfs/v1/?aclspec=user:027c28d5-c91d-49f0-98c5-d10134b169b3&op=REMOVEACLENTRIES&api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3dlYmhkZnMvdjEvP2FjbHNwZWM9dXNlciUzQTAyN2MyOGQ1LWM5MWQtNDlmMC05OGM1LWQxMDEzNGIxNjliMyZvcD1SRU1PVkVBQ0xFTlRSSUVTJmFwaS12ZXJzaW9uPTIwMTUtMTAtMDEtcHJldmlldw==",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "725ed766-62fc-4ed6-a5a6-d50cbac730ef"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
"ResponseBody": "",
@@ -1593,13 +1510,13 @@
"no-cache"
],
"x-ms-request-id": [
- "ae4cdef5-4df6-4007-ba5f-c30a09d614be"
+ "dbc80202-ef53-4685-a752-5531f12de02b"
],
"ContentLength": [
"0"
],
"Server-Perf": [
- "[ae4cdef54df64007ba5fc30a09d614be][ AuthTime::763.434196463054::PostAuthTime::178.348492955235 ][REMOVEACLENTRIES :: 00:00:051 ms]%0a"
+ "[dbc80202ef534685a7525531f12de02b][ AuthTime::810.492694017837::PostAuthTime::186.905175348704 ][REMOVEACLENTRIES :: 00:00:068 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1611,7 +1528,7 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:10 GMT"
+ "Fri, 26 Feb 2016 02:05:23 GMT"
]
},
"StatusCode": 200
@@ -1622,21 +1539,20 @@
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "dd7b6163-a3c5-496a-ba16-1d7f64eb96ce"
+ ],
+ "subscriptionId": [
+ "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"CsRemoveAcl returned status code 0x83090053 () but 0x800703E5 () is expected. [2fdf4d2ec5be493aafe3ca8ba1faac2c]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"CsRemoveAcl returned status code 0x83090053 () but 0x800703E5 () is expected. [dab25125aaf5413d85c251e1bbdec69a]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"223"
@@ -1651,10 +1567,10 @@
"no-cache"
],
"x-ms-request-id": [
- "2fdf4d2e-c5be-493a-afe3-ca8ba1faac2c"
+ "dab25125-aaf5-413d-85c2-51e1bbdec69a"
],
"Server-Perf": [
- "[2fdf4d2ec5be493aafe3ca8ba1faac2c][ AuthTime::1832.24207151133::PostAuthTime::34079.5314524197 ][REMOVEACL :: 00:00:001 ms]%0a"
+ "[dab25125aaf5413d85c251e1bbdec69a][ AuthTime::1744.16316950118::PostAuthTime::31257.2174481327 ][REMOVEACL :: 00:00:001 ms]%0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1666,41 +1582,34 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:31 GMT"
+ "Fri, 26 Feb 2016 02:05:43 GMT"
],
"Set-Cookie": [
- "UserPrincipalSession=e2ed4dc4-186e-4bd6-b934-4f3726392838; path=/; secure; HttpOnly"
+ "UserPrincipalSession=f9420469-50c0-4c0d-8be4-c64a3d178e80; path=/; secure; HttpOnly"
]
},
"StatusCode": 500
},
{
- "RequestUri": "/webhdfs/v1/?op=REMOVEDEFAULTACL&api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3dlYmhkZnMvdjEvP29wPVJFTU9WRURFRkFVTFRBQ0wmYXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk6317/providers/Microsoft.DataLakeStore/accounts/onesdk5353?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazYzMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazUzNTM/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.StoreFileSystem 0.9.6-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "fc0d160e-3e4d-4686-bff1-bdfd2ce53ef0"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.StoreFileSystem",
- "0.9.6-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"CsRemoveDefaultAcl returned status code 0x83090053 () but 0x800703E5 () is expected. [d97e2f8fc21e4a929bb8d38731b30d5f]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "230"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "0"
],
"Expires": [
"-1"
@@ -1709,47 +1618,100 @@
"no-cache"
],
"x-ms-request-id": [
- "d97e2f8f-c21e-4a92-9bb8-d38731b30d5f"
+ "b7f465d5-35d5-4b8a-95a1-4703d1555371"
],
- "Server-Perf": [
- "[d97e2f8fc21e4a929bb8d38731b30d5f][ AuthTime::1758.25097011743::PostAuthTime::34138.125561616 ][REMOVEDEFAULTACL :: 00:00:001 ms]%0a"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1189"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "x-ms-correlation-request-id": [
+ "a0b0a035-e2b3-43a4-bde9-dd509cc755ac"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T020546Z:a0b0a035-e2b3-43a4-bde9-dd509cc755ac"
],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:52 GMT"
+ "Fri, 26 Feb 2016 02:05:46 GMT"
],
- "Set-Cookie": [
- "UserPrincipalSession=e2ed4dc4-186e-4bd6-b934-4f3726392838; path=/; secure; HttpOnly"
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
]
},
- "StatusCode": 500
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/46153750-fa3b-4140-bf57-8beb7d5c971a/resourceGroups/datalakerg16582/providers/Microsoft.DataLakeStore/accounts/testdatalake11535?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDYxNTM3NTAtZmEzYi00MTQwLWJmNTctOGJlYjdkNWM5NzFhL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjU4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MzU/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk6317?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazYzMTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "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": [
+ "1194"
+ ],
+ "x-ms-request-id": [
+ "411605d5-19c0-4a45-a84d-54b5ae1bb478"
+ ],
+ "x-ms-correlation-request-id": [
+ "411605d5-19c0-4a45-a84d-54b5ae1bb478"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T020548Z:411605d5-19c0-4a45-a84d-54b5ae1bb478"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:05:48 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MzE3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MzE3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNekUzTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
"ResponseBody": "",
@@ -1763,17 +1725,74 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14987"
+ ],
"x-ms-request-id": [
- "884237cd-0532-49e6-b1bd-4f52b95ea657"
+ "d74772c4-9d8f-457d-a7a7-a577ab0e8412"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "x-ms-correlation-request-id": [
+ "d74772c4-9d8f-457d-a7a7-a577ab0e8412"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T020548Z:d74772c4-9d8f-457d-a7a7-a577ab0e8412"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:05:48 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MzE3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MzE3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNekUzTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "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": [
+ "14986"
+ ],
+ "x-ms-request-id": [
+ "d93cbc16-bc4d-4cb1-a384-4712e155a91a"
],
"x-ms-correlation-request-id": [
- "28817f00-7b3c-48b5-842e-6de476427268"
+ "d93cbc16-bc4d-4cb1-a384-4712e155a91a"
],
"x-ms-routing-request-id": [
- "WESTUS:20151120T001254Z:28817f00-7b3c-48b5-842e-6de476427268"
+ "WESTUS:20160226T020604Z:d93cbc16-bc4d-4cb1-a384-4712e155a91a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1782,23 +1801,124 @@
"no-cache"
],
"Date": [
- "Fri, 20 Nov 2015 00:12:54 GMT"
+ "Fri, 26 Feb 2016 02:06:03 GMT"
],
- "Server": [
- "Microsoft-IIS/8.5"
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MzE3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MzE3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNekUzTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
],
- "X-AspNet-Version": [
- "4.0.30319"
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14985"
+ ],
+ "x-ms-request-id": [
+ "fb8895ba-31fa-4d2d-a7c4-e60dd43e3089"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb8895ba-31fa-4d2d-a7c4-e60dd43e3089"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T020619Z:fb8895ba-31fa-4d2d-a7c4-e60dd43e3089"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:06:18 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MzE3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MzE3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNekUzTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14984"
+ ],
+ "x-ms-request-id": [
+ "54246f75-be5d-4ea5-9891-b06534b421a1"
+ ],
+ "x-ms-correlation-request-id": [
+ "54246f75-be5d-4ea5-9891-b06534b421a1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T020634Z:54246f75-be5d-4ea5-9891-b06534b421a1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:06:34 GMT"
]
},
"StatusCode": 200
}
],
- "Names": {},
+ "Names": {
+ "Test-DataLakeStoreFileSystemPermissions": [
+ "onesdk6317",
+ "onesdk5353"
+ ]
+ },
"Variables": {
- "SubscriptionId": "46153750-fa3b-4140-bf57-8beb7d5c971a"
+ "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestNegativeAdlsAccount.json b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestNegativeAdlsAccount.json
index f8680783782e..b4980c9ff620 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestNegativeAdlsAccount.json
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/SessionRecords/Microsoft.Azure.Commands.DataLakeStore.Test.ScenarioTests.AdlsTests/TestNegativeAdlsAccount.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore/register?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
@@ -10,7 +10,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"640"
@@ -25,16 +25,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1199"
],
"x-ms-request-id": [
- "b3ff34c5-50b7-4c2d-a317-abd875988df0"
+ "9e610e78-b85b-4594-9162-d5d304aff879"
],
"x-ms-correlation-request-id": [
- "b3ff34c5-50b7-4c2d-a317-abd875988df0"
+ "9e610e78-b85b-4594-9162-d5d304aff879"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212135Z:b3ff34c5-50b7-4c2d-a317-abd875988df0"
+ "WESTUS:20160226T020304Z:9e610e78-b85b-4594-9162-d5d304aff879"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -43,14 +43,14 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:21:35 GMT"
+ "Fri, 26 Feb 2016 02:03:04 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -58,7 +58,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"640"
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14927"
+ "14999"
],
"x-ms-request-id": [
- "8acdcbc5-a822-41d2-96e9-a41fa6c65f82"
+ "ef85f76b-2a12-41b5-ba3e-d3155b7ee157"
],
"x-ms-correlation-request-id": [
- "8acdcbc5-a822-41d2-96e9-a41fa6c65f82"
+ "ef85f76b-2a12-41b5-ba3e-d3155b7ee157"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212135Z:8acdcbc5-a822-41d2-96e9-a41fa6c65f82"
+ "WESTUS:20160226T020304Z:ef85f76b-2a12-41b5-ba3e-d3155b7ee157"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,14 +91,110 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:21:35 GMT"
+ "Fri, 26 Feb 2016 02:03:04 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourcegroups/datalakerg18711?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODcxMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5314?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "4320cd49-b336-4580-84fc-d0eb296a6895"
+ ],
+ "x-ms-correlation-request-id": [
+ "4320cd49-b336-4580-84fc-d0eb296a6895"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T020310Z:4320cd49-b336-4580-84fc-d0eb296a6895"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:03:09 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5314?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-request-id": [
+ "dc285fbc-c21a-4f6c-a524-6dcbf8302dc6"
+ ],
+ "x-ms-correlation-request-id": [
+ "dc285fbc-c21a-4f6c-a524-6dcbf8302dc6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T020349Z:dc285fbc-c21a-4f6c-a524-6dcbf8302dc6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:03:48 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5314?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
@@ -112,10 +208,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711\",\r\n \"name\": \"datalakerg18711\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314\",\r\n \"name\": \"onesdk5314\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "184"
+ "174"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -127,16 +223,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1198"
],
"x-ms-request-id": [
- "99be8dac-b14a-4a35-befd-d111838899e5"
+ "ea8ec405-42c1-4d1e-972a-9a87891ca65b"
],
"x-ms-correlation-request-id": [
- "99be8dac-b14a-4a35-befd-d111838899e5"
+ "ea8ec405-42c1-4d1e-972a-9a87891ca65b"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212137Z:99be8dac-b14a-4a35-befd-d111838899e5"
+ "WESTUS:20160226T020311Z:ea8ec405-42c1-4d1e-972a-9a87891ca65b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,14 +241,14 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:21:37 GMT"
+ "Fri, 26 Feb 2016 02:03:11 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourcegroups/datalakerg18711?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODcxMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazUzMTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -160,10 +256,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711\",\r\n \"name\": \"datalakerg18711\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "184"
+ "12"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -175,16 +271,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14926"
+ "14997"
],
"x-ms-request-id": [
- "e2bb01e5-f2c0-48f2-8c7a-c23726543940"
+ "f6a05f93-b112-480c-801d-a0b6ae3de2db"
],
"x-ms-correlation-request-id": [
- "e2bb01e5-f2c0-48f2-8c7a-c23726543940"
+ "f6a05f93-b112-480c-801d-a0b6ae3de2db"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212137Z:e2bb01e5-f2c0-48f2-8c7a-c23726543940"
+ "WESTUS:20160226T020312Z:f6a05f93-b112-480c-801d-a0b6ae3de2db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,35 +289,31 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:21:37 GMT"
+ "Fri, 26 Feb 2016 02:03:11 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711/providers/Microsoft.DataLakeStore/accounts/testdatalake16872?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODcxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTY4NzI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazUzMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY5Njc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "19e3ffb9-8bb1-416f-9a55-5c888e0d024f"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake16872' under resource group 'datalakerg18711' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk6967' under resource group 'onesdk5314' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "169"
+ "157"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -236,13 +328,13 @@
"gateway"
],
"x-ms-request-id": [
- "441869ab-cb86-4ff1-b4e9-4eb8bec10508"
+ "655a0134-7b7b-457a-a461-26846e3e802b"
],
"x-ms-correlation-request-id": [
- "441869ab-cb86-4ff1-b4e9-4eb8bec10508"
+ "655a0134-7b7b-457a-a461-26846e3e802b"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212145Z:441869ab-cb86-4ff1-b4e9-4eb8bec10508"
+ "WESTUS:20160226T020312Z:655a0134-7b7b-457a-a461-26846e3e802b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -251,35 +343,31 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:21:45 GMT"
+ "Fri, 26 Feb 2016 02:03:11 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711/providers/Microsoft.DataLakeStore/accounts/testdatalake16872?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODcxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTY4NzI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazUzMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY5Njc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "599da3a1-fa5a-4ffa-806a-a797549c3993"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake16872' under resource group 'datalakerg18711' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk6967' under resource group 'onesdk5314' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "169"
+ "157"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -294,13 +382,13 @@
"gateway"
],
"x-ms-request-id": [
- "050b3983-e724-49e5-bd00-4ebbe0586d3d"
+ "4b42c7d9-f158-4ded-8469-2abe6d66b519"
],
"x-ms-correlation-request-id": [
- "050b3983-e724-49e5-bd00-4ebbe0586d3d"
+ "4b42c7d9-f158-4ded-8469-2abe6d66b519"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212146Z:050b3983-e724-49e5-bd00-4ebbe0586d3d"
+ "WESTUS:20160226T020312Z:4b42c7d9-f158-4ded-8469-2abe6d66b519"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -309,35 +397,88 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:21:46 GMT"
+ "Fri, 26 Feb 2016 02:03:11 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711/providers/Microsoft.DataLakeStore/accounts/testdatalake16872?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODcxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTY4NzI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazUzMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY5Njc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk6967.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:03:16.3212248Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:03:16.3212248Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967\",\r\n \"name\": \"onesdk6967\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "488"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d1dc611f-a7d0-4892-b94a-1ad4faec4d54"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "x-ms-correlation-request-id": [
+ "5fa1bb3a-f01c-4465-a781-c81a87f1041d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T020345Z:5fa1bb3a-f01c-4465-a781-c81a87f1041d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:03:45 GMT"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazUzMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY5Njc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cf278bad-19e6-4787-a051-b4c9bf293a4a"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16872.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-06T21:21:49.1558099Z\",\r\n \"lastModifiedTime\": \"2015-11-06T21:21:49.1558099Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711/providers/Microsoft.DataLakeStore/accounts/testdatalake16872\",\r\n \"name\": \"testdatalake16872\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk6967.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:03:16.3212248Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:03:16.3212248Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967\",\r\n \"name\": \"onesdk6967\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "468"
+ "488"
],
"Content-Type": [
"application/json"
@@ -349,16 +490,16 @@
"no-cache"
],
"x-ms-request-id": [
- "a4f36111-4aeb-4571-97f1-f67fbd6537c7"
+ "2d494ef3-b2e6-41ff-8142-984751c8121b"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14894"
+ "14992"
],
"x-ms-correlation-request-id": [
- "45cba87e-f68e-4023-9556-5092bad76952"
+ "cdb8a2b9-2d49-48dd-824b-564781e69f33"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212231Z:45cba87e-f68e-4023-9556-5092bad76952"
+ "WESTUS:20160226T020346Z:cdb8a2b9-2d49-48dd-824b-564781e69f33"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -367,7 +508,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:22:30 GMT"
+ "Fri, 26 Feb 2016 02:03:46 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -382,29 +523,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711/providers/Microsoft.DataLakeStore/accounts/testdatalake16872?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODcxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTY4NzI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazUzMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY5Njc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "a2b32d69-bd00-4ece-98f9-e48254d99b8a"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16872.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-06T21:21:49.1558099Z\",\r\n \"lastModifiedTime\": \"2015-11-06T21:21:49.1558099Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711/providers/Microsoft.DataLakeStore/accounts/testdatalake16872\",\r\n \"name\": \"testdatalake16872\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk6967.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:03:16.3212248Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:03:16.3212248Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967\",\r\n \"name\": \"onesdk6967\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "468"
+ "488"
],
"Content-Type": [
"application/json"
@@ -416,16 +553,16 @@
"no-cache"
],
"x-ms-request-id": [
- "31a695b1-0fc6-4e53-b6f3-d430a7c5d176"
+ "de5f8890-00a2-438f-b947-6f7390a9d4a7"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14893"
+ "14991"
],
"x-ms-correlation-request-id": [
- "bdbb041e-e1aa-4b0e-8244-812cb065681b"
+ "cfa8915f-18da-47c9-9044-90ba043eb365"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212231Z:bdbb041e-e1aa-4b0e-8244-812cb065681b"
+ "WESTUS:20160226T020346Z:cfa8915f-18da-47c9-9044-90ba043eb365"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -434,7 +571,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:22:31 GMT"
+ "Fri, 26 Feb 2016 02:03:46 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -449,29 +586,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711/providers/Microsoft.DataLakeStore/accounts/testdatalake16872?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODcxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTY4NzI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazUzMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY5Njc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "a36a302b-5c6e-4bdc-8778-547bf9050866"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16872.azuredatalakestore.net\",\r\n \"creationTime\": \"2015-11-06T21:21:49.1558099Z\",\r\n \"lastModifiedTime\": \"2015-11-06T21:21:49.1558099Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711/providers/Microsoft.DataLakeStore/accounts/testdatalake16872\",\r\n \"name\": \"testdatalake16872\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk6967.azuredatalakestore.net\",\r\n \"creationTime\": \"2016-02-26T02:03:16.3212248Z\",\r\n \"lastModifiedTime\": \"2016-02-26T02:03:16.3212248Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967\",\r\n \"name\": \"onesdk6967\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "468"
+ "488"
],
"Content-Type": [
"application/json"
@@ -483,16 +616,16 @@
"no-cache"
],
"x-ms-request-id": [
- "9cdbc638-0edf-40b5-aadc-a275dd532e83"
+ "21890e2d-7a78-48d6-bf7e-6cd97bd37187"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14892"
+ "14988"
],
"x-ms-correlation-request-id": [
- "8eae90b9-cf3a-43fe-a87c-a044689240bd"
+ "dc4e3a23-4711-4f9d-a715-26e38199407c"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212231Z:8eae90b9-cf3a-43fe-a87c-a044689240bd"
+ "WESTUS:20160226T020346Z:dc4e3a23-4711-4f9d-a715-26e38199407c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -501,7 +634,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:22:31 GMT"
+ "Fri, 26 Feb 2016 02:03:46 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -516,29 +649,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711/providers/Microsoft.DataLakeStore/accounts/testdatalake16872?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODcxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTY4NzI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazUzMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY5Njc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-client-request-id": [
+ "24cea7dd-4bf9-419b-ae5f-3fb26cef7ea1"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake16872' under resource group 'datalakerg18711' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk6967' under resource group 'onesdk5314' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "169"
+ "157"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -553,13 +682,13 @@
"gateway"
],
"x-ms-request-id": [
- "a25470af-cddd-429c-9020-068cc0465091"
+ "fa527a14-bf85-4cb7-bd4c-6b2bc79815fb"
],
"x-ms-correlation-request-id": [
- "a25470af-cddd-429c-9020-068cc0465091"
+ "fa527a14-bf85-4cb7-bd4c-6b2bc79815fb"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212233Z:a25470af-cddd-429c-9020-068cc0465091"
+ "WESTUS:20160226T020348Z:fa527a14-bf85-4cb7-bd4c-6b2bc79815fb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -568,44 +697,145 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:22:33 GMT"
+ "Fri, 26 Feb 2016 02:03:48 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711/providers/Microsoft.DataLakeStore/accounts/testdatalake16872?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODcxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTY4NzI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"testdatalake16872\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazUzMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY5Njc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6a1d5d23-0827-49ac-abbe-c913047af4ca"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk6967' under resource group 'onesdk5314' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "157"
+ ],
"Content-Type": [
"application/json; charset=utf-8"
],
- "Content-Length": [
- "194"
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "9f3a9f79-ec66-40fb-ba95-a80e341a60ef"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f3a9f79-ec66-40fb-ba95-a80e341a60ef"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T020348Z:9f3a9f79-ec66-40fb-ba95-a80e341a60ef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:03:48 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazUzMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY5Njc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4d7639c3-b17e-403c-b001-ee47d8fb6d08"
],
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/onesdk6967' under resource group 'onesdk5314' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "157"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "5c621d74-410a-467d-8fb4-f31a97a26c76"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c621d74-410a-467d-8fb4-f31a97a26c76"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T020348Z:5c621d74-410a-467d-8fb4-f31a97a26c76"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:03:48 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazUzMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY5Njc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"name\": \"onesdk6967\",\r\n \"tags\": {},\r\n \"properties\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "92"
],
"x-ms-client-request-id": [
- "13a4af4e-e8b7-4afb-bee3-fd02325a282b"
+ "c5532488-41f5-4802-8126-5f28f437be5a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": \"0001-01-01T00:00:00\",\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711/providers/Microsoft.DataLakeStore/accounts/testdatalake16872\",\r\n \"name\": \"testdatalake16872\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967\",\r\n \"name\": \"onesdk6967\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "407"
+ "354"
],
"Content-Type": [
"application/json"
@@ -620,19 +850,19 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1e2b4af5-4db2-415c-89c7-b567571d5e3c0?api-version=2015-10-01-preview&expanded=true"
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f18bfb9a-7726-49bd-801f-f0937164bedd0?api-version=2015-10-01-preview&expanded=true"
],
"x-ms-request-id": [
- "3672140e-1dcb-463e-9bd2-86563c5ba190"
+ "9f0e8e59-a745-499c-ab22-f2e60c46264f"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1197"
],
"x-ms-correlation-request-id": [
- "4d46abbe-2253-4d4a-858e-0841f5b0518f"
+ "41bb7505-cde8-407d-b929-401420de0a2c"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212149Z:4d46abbe-2253-4d4a-858e-0841f5b0518f"
+ "WESTUS:20160226T020315Z:41bb7505-cde8-407d-b929-401420de0a2c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -641,10 +871,10 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:21:49 GMT"
+ "Fri, 26 Feb 2016 02:03:14 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourcegroups/datalakerg18711/providers/Microsoft.DataLakeStore/accounts/testdatalake16872/operationresults/0?api-version=2015-10-01-preview"
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967/operationresults/0?api-version=2015-10-01-preview"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -659,22 +889,19 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1e2b4af5-4db2-415c-89c7-b567571d5e3c0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzFlMmI0YWY1LTRkYjItNDE1Yy04OWM3LWI1Njc1NzFkNWUzYzA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f18bfb9a-7726-49bd-801f-f0937164bedd0?api-version=2015-10-01-preview&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2YxOGJmYjlhLTc3MjYtNDliZC04MDFmLWYwOTM3MTY0YmVkZDA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.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"
@@ -686,16 +913,16 @@
"no-cache"
],
"x-ms-request-id": [
- "28491a61-ec2a-428b-a131-6fa06f572080"
+ "4d2d04dc-1bd2-4de8-85f1-663cca959f13"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14900"
+ "14994"
],
"x-ms-correlation-request-id": [
- "edbb7c22-f477-4453-8a28-89f7fa104dc7"
+ "4df310ef-6af8-4677-be61-381ebbe93389"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212149Z:edbb7c22-f477-4453-8a28-89f7fa104dc7"
+ "WESTUS:20160226T020345Z:4df310ef-6af8-4677-be61-381ebbe93389"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -704,7 +931,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:21:49 GMT"
+ "Fri, 26 Feb 2016 02:03:45 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -719,25 +946,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1e2b4af5-4db2-415c-89c7-b567571d5e3c0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzFlMmI0YWY1LTRkYjItNDE1Yy04OWM3LWI1Njc1NzFkNWUzYzA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/psfakedataLakeaccounttest?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazUzMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3BzZmFrZWRhdGFMYWtlYWNjb3VudHRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "5f77b405-7752-40ef-9459-efd62b5f7e02"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/psfakedataLakeaccounttest' under resource group 'onesdk5314' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "172"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -745,17 +975,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "ab893f11-a5bf-4e03-94c6-dd41cfa84c34"
+ "x-ms-failure-cause": [
+ "gateway"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14899"
+ "x-ms-request-id": [
+ "0d8cd070-7fda-4f00-82da-7e096ca1d5e5"
],
"x-ms-correlation-request-id": [
- "b93a26ea-8dfb-4d28-878f-8a524bfc3cd2"
+ "0d8cd070-7fda-4f00-82da-7e096ca1d5e5"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212159Z:b93a26ea-8dfb-4d28-878f-8a524bfc3cd2"
+ "WESTUS:20160226T020346Z:0d8cd070-7fda-4f00-82da-7e096ca1d5e5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -764,40 +994,34 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:21:59 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:03:46 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1e2b4af5-4db2-415c-89c7-b567571d5e3c0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzFlMmI0YWY1LTRkYjItNDE1Yy04OWM3LWI1Njc1NzFkNWUzYzA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/psfakedataLakeaccounttest?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazUzMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3BzZmFrZWRhdGFMYWtlYWNjb3VudHRlc3Q/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-10-01-preview"
+ "x-ms-client-request-id": [
+ "1e99e891-4991-438c-989b-81765b01b895"
+ ],
+ "accept-language": [
+ "en-US"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/psfakedataLakeaccounttest' under resource group 'onesdk5314' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "23"
+ "172"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -805,17 +1029,68 @@
"Pragma": [
"no-cache"
],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
"x-ms-request-id": [
- "0e4b9762-e781-4ac0-9235-6ca833166254"
+ "da67e507-2a3d-42d1-b1aa-963a98312946"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14896"
+ "x-ms-correlation-request-id": [
+ "da67e507-2a3d-42d1-b1aa-963a98312946"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T020346Z:da67e507-2a3d-42d1-b1aa-963a98312946"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:03:46 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk5314/providers/Microsoft.DataLakeStore/accounts/onesdk6967?api-version=2015-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL29uZXNkazUzMTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL29uZXNkazY5Njc/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e62a5939-d111-4ef1-ba58-eab94ebc13c2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.10.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "1994638f-3295-47ec-9c90-cfac1a660dba"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
],
"x-ms-correlation-request-id": [
- "3dd5d4d7-0b59-4e10-803f-2f1fbdcced46"
+ "d025baa4-1dd9-437a-af65-d7ebc23f046a"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212215Z:3dd5d4d7-0b59-4e10-803f-2f1fbdcced46"
+ "WESTUS:20160226T020348Z:d025baa4-1dd9-437a-af65-d7ebc23f046a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -824,7 +1099,7 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:22:15 GMT"
+ "Fri, 26 Feb 2016 02:03:48 GMT"
],
"Server": [
"Microsoft-IIS/8.5"
@@ -839,25 +1114,73 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1e2b4af5-4db2-415c-89c7-b567571d5e3c0?api-version=2015-10-01-preview&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzFlMmI0YWY1LTRkYjItNDE1Yy04OWM3LWI1Njc1NzFkNWUzYzA/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3JmV4cGFuZGVkPXRydWU=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/onesdk5314?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL29uZXNkazUzMTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "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": [
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "ee6f6392-ee1b-4614-a4da-050427c498fd"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee6f6392-ee1b-4614-a4da-050427c498fd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20160226T020350Z:ee6f6392-ee1b-4614-a4da-050427c498fd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 26 Feb 2016 02:03:50 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MzE0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MzE0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFNekUwTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-version": [
- "2015-10-01-preview"
+ "2014-04-01-preview"
],
"User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "22"
- ],
- "Content-Type": [
- "application/json"
+ "0"
],
"Expires": [
"-1"
@@ -865,17 +1188,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "71e31c2c-a414-43a5-a871-5008ed073828"
+ "Retry-After": [
+ "15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14895"
+ "14995"
+ ],
+ "x-ms-request-id": [
+ "4a99d007-8a33-4466-9820-755637994daa"
],
"x-ms-correlation-request-id": [
- "83316dd7-e352-4b93-9ebf-d7ddb4f9527d"
+ "4a99d007-8a33-4466-9820-755637994daa"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212230Z:83316dd7-e352-4b93-9ebf-d7ddb4f9527d"
+ "WESTUS:20160226T020350Z:4a99d007-8a33-4466-9820-755637994daa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -884,47 +1210,31 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:22:30 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
+ "Fri, 26 Feb 2016 02:03:50 GMT"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MzE0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711/providers/Microsoft.DataLakeStore/accounts/psfakedataLakeaccounttest?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODcxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHNmYWtlZGF0YUxha2VhY2NvdW50dGVzdD9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MzE0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFNekUwTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/psfakedataLakeaccounttest' under resource group 'datalakerg18711' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "177"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "0"
],
"Expires": [
"-1"
@@ -932,17 +1242,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
],
"x-ms-request-id": [
- "3f4bc7ff-bd36-4a5b-8d8d-bb24e1752d52"
+ "64d8ff83-a78a-40a5-b420-1ff120c67f07"
],
"x-ms-correlation-request-id": [
- "3f4bc7ff-bd36-4a5b-8d8d-bb24e1752d52"
+ "64d8ff83-a78a-40a5-b420-1ff120c67f07"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212231Z:3f4bc7ff-bd36-4a5b-8d8d-bb24e1752d52"
+ "WESTUS:20160226T020405Z:64d8ff83-a78a-40a5-b420-1ff120c67f07"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -951,38 +1264,31 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:22:31 GMT"
+ "Fri, 26 Feb 2016 02:04:05 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MzE0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 404
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711/providers/Microsoft.DataLakeStore/accounts/psfakedataLakeaccounttest?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODcxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvcHNmYWtlZGF0YUxha2VhY2NvdW50dGVzdD9hcGktdmVyc2lvbj0yMDE1LTEwLTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MzE0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFNekUwTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/psfakedataLakeaccounttest' under resource group 'datalakerg18711' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "177"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "0"
],
"Expires": [
"-1"
@@ -990,17 +1296,20 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
],
"x-ms-request-id": [
- "35bc1ce9-06fa-4ad0-a7e8-cad188b72561"
+ "6a7937cf-1fcc-4bae-84d1-3c7811245d30"
],
"x-ms-correlation-request-id": [
- "35bc1ce9-06fa-4ad0-a7e8-cad188b72561"
+ "6a7937cf-1fcc-4bae-84d1-3c7811245d30"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212231Z:35bc1ce9-06fa-4ad0-a7e8-cad188b72561"
+ "WESTUS:20160226T020420Z:6a7937cf-1fcc-4bae-84d1-3c7811245d30"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1009,29 +1318,25 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:22:31 GMT"
+ "Fri, 26 Feb 2016 02:04:20 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MzE0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview"
]
},
- "StatusCode": 404
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/045c28ea-c686-462f-9081-33c34e871ba3/resourceGroups/datalakerg18711/providers/Microsoft.DataLakeStore/accounts/testdatalake16872?api-version=2015-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ1YzI4ZWEtYzY4Ni00NjJmLTkwODEtMzNjMzRlODcxYmEzL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODcxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTY4NzI/YXBpLXZlcnNpb249MjAxNS0xMC0wMS1wcmV2aWV3",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1MzE0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFNekUwTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "useragent": [
- "Azure SDK - Microsoft.Azure.Management.DataLake.Store 0.9.1-preview - PowerShell Client"
+ "x-ms-version": [
+ "2014-04-01-preview"
],
"User-Agent": [
- "Azure",
- "SDK",
- "-",
- "Microsoft.Azure.Management.DataLake.Store",
- "0.9.1-preview",
- "-",
- "PowerShell",
- "Client"
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
"ResponseBody": "",
@@ -1045,17 +1350,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "6c7e09bd-768a-441e-9607-da531e9a812b"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-request-id": [
+ "13b3e9af-1a7e-4dec-96bf-49480be75889"
],
"x-ms-correlation-request-id": [
- "e2a58c5e-3bda-4267-8c29-be10727338eb"
+ "13b3e9af-1a7e-4dec-96bf-49480be75889"
],
"x-ms-routing-request-id": [
- "WESTUS:20151106T212233Z:e2a58c5e-3bda-4267-8c29-be10727338eb"
+ "WESTUS:20160226T020436Z:13b3e9af-1a7e-4dec-96bf-49480be75889"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1064,23 +1369,19 @@
"no-cache"
],
"Date": [
- "Fri, 06 Nov 2015 21:22:33 GMT"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "Fri, 26 Feb 2016 02:04:35 GMT"
]
},
"StatusCode": 200
}
],
- "Names": {},
+ "Names": {
+ "Test-NegativeDataLakeStoreAccount": [
+ "onesdk5314",
+ "onesdk6967"
+ ]
+ },
"Variables": {
- "SubscriptionId": "045c28ea-c686-462f-9081-33c34e871ba3"
+ "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/packages.config b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/packages.config
index 7c780b93e5c2..8f74492da226 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/packages.config
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore.Test/packages.config
@@ -3,19 +3,22 @@
-
-
-
+
+
+
+
-
+
+
+
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands.DataLakeStore.csproj b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands.DataLakeStore.csproj
index 802d214742c8..12caf073bea2 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands.DataLakeStore.csproj
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands.DataLakeStore.csproj
@@ -45,17 +45,15 @@
..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll
-
+
False
- ..\..\..\packages\Microsoft.Azure.Management.DataLake.Store.0.9.1-preview\lib\net40\Microsoft.Azure.Management.DataLake.Store.dll
-
-
- False
- ..\..\..\packages\Microsoft.Azure.Management.DataLake.StoreFileSystem.0.9.6-preview\lib\net40\Microsoft.Azure.Management.DataLake.StoreFileSystem.dll
+ ..\..\..\packages\Microsoft.Azure.Management.DataLake.Store.0.10.0-preview\lib\net45\Microsoft.Azure.Management.DataLake.Store.dll
+ True
-
+
False
- ..\..\..\packages\Microsoft.Azure.Management.DataLake.StoreUploader.0.9.6-preview\lib\net40\Microsoft.Azure.Management.DataLake.StoreUploader.dll
+ ..\..\..\packages\Microsoft.Azure.Management.DataLake.StoreUploader.0.10.0-preview\lib\net45\Microsoft.Azure.Management.DataLake.StoreUploader.dll
+ True
False
@@ -73,6 +71,11 @@
..\..\..\packages\Microsoft.Rest.ClientRuntime.2.0.1\lib\net45\Microsoft.Rest.ClientRuntime.dll
True
+
+ False
+ ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.3.0.2\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll
+ True
+
..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.2.0.1-preview\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll
True
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/ExportAzureRmDataStoreLakeItem.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/ExportAzureRmDataStoreLakeItem.cs
index 9e37503f67d1..229b6dff02a0 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/ExportAzureRmDataStoreLakeItem.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/ExportAzureRmDataStoreLakeItem.cs
@@ -12,12 +12,11 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using System;
using System.Management.Automation;
-using Hyak.Common;
using Microsoft.Azure.Commands.DataLakeStore.Models;
using Microsoft.Azure.Commands.DataLakeStore.Properties;
-using Microsoft.Azure.Management.DataLake.StoreFileSystem.Models;
+using Microsoft.Azure.Management.DataLake.Store.Models;
+using Microsoft.Rest.Azure;
namespace Microsoft.Azure.Commands.DataLakeStore
{
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/GetAzureRmDataLakeStoreChildItem.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/GetAzureRmDataLakeStoreChildItem.cs
index d3d3aa2db755..9f9d25b9f47b 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/GetAzureRmDataLakeStoreChildItem.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/GetAzureRmDataLakeStoreChildItem.cs
@@ -16,7 +16,6 @@
using System.Linq;
using System.Management.Automation;
using Microsoft.Azure.Commands.DataLakeStore.Models;
-using Microsoft.Azure.Management.DataLake.StoreFileSystem.Models;
namespace Microsoft.Azure.Commands.DataLakeStore
{
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/GetAzureRmDataLakeStoreItem.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/GetAzureRmDataLakeStoreItem.cs
index 700423454dfd..13a218eb894e 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/GetAzureRmDataLakeStoreItem.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/GetAzureRmDataLakeStoreItem.cs
@@ -15,7 +15,6 @@
using System;
using System.Management.Automation;
using Microsoft.Azure.Commands.DataLakeStore.Models;
-using Microsoft.Azure.Management.DataLake.StoreFileSystem.Models;
namespace Microsoft.Azure.Commands.DataLakeStore
{
@@ -48,8 +47,7 @@ public override void ExecuteCmdlet()
Path.TransformedPath.LastIndexOf("/", StringComparison.InvariantCultureIgnoreCase) + 1);
}
- toReturn.PathSuffix = itemName;
- WriteObject(new DataLakeStoreItem(toReturn));
+ WriteObject(new DataLakeStoreItem(toReturn, itemName));
}
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/GetAzureRmDataLakeStoreItemContent.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/GetAzureRmDataLakeStoreItemContent.cs
index fc623de5a3ad..3b67d7bf81b3 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/GetAzureRmDataLakeStoreItemContent.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/GetAzureRmDataLakeStoreItemContent.cs
@@ -66,7 +66,7 @@ public override void ExecuteCmdlet()
byte[] byteArray;
if (Length <= 0)
{
- Length = DataLakeStoreFileSystemClient.GetFileStatus(Path.TransformedPath, Account).Length - Offset;
+ Length = (long)DataLakeStoreFileSystemClient.GetFileStatus(Path.TransformedPath, Account).Length - Offset;
if (Length > 1*1024*1024 && !Force)
// If content is greater than 1MB throw an error to the user to let them know they must pass in a length to preview this much content
{
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/ImportAzureRmDataLakeStoreItem.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/ImportAzureRmDataLakeStoreItem.cs
index 7784f8e1fca8..66383f4480de 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/ImportAzureRmDataLakeStoreItem.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/ImportAzureRmDataLakeStoreItem.cs
@@ -14,7 +14,6 @@
using System.IO;
using System.Management.Automation;
-using Hyak.Common;
using Microsoft.Azure.Commands.DataLakeStore.Models;
using Microsoft.Azure.Commands.DataLakeStore.Properties;
@@ -84,8 +83,8 @@ public override void ExecuteCmdlet()
Account,
powerShellSourcePath,
CmdletCancellationToken,
- -1,
NumThreads,
+ -1,
Recurse,
Force,
Resume, ForceBinary, ForceBinary, this);
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/JoinAzureRmDataLakeStoreItem.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/JoinAzureRmDataLakeStoreItem.cs
index 8b6c62424d7f..1a6489ad7020 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/JoinAzureRmDataLakeStoreItem.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/JoinAzureRmDataLakeStoreItem.cs
@@ -15,7 +15,7 @@
using System.Linq;
using System.Management.Automation;
using Microsoft.Azure.Commands.DataLakeStore.Models;
-using Microsoft.Azure.Management.DataLake.StoreFileSystem.Models;
+using Microsoft.Azure.Management.DataLake.Store.Models;
namespace Microsoft.Azure.Commands.DataLakeStore
{
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/MoveAzureRmDataLakeStoreItem.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/MoveAzureRmDataLakeStoreItem.cs
index e7bc51fd4001..c8b384e2d176 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/MoveAzureRmDataLakeStoreItem.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/MoveAzureRmDataLakeStoreItem.cs
@@ -13,10 +13,10 @@
// ----------------------------------------------------------------------------------
using System.Management.Automation;
-using Hyak.Common;
using Microsoft.Azure.Commands.DataLakeStore.Models;
using Microsoft.Azure.Commands.DataLakeStore.Properties;
-using Microsoft.Azure.Management.DataLake.StoreFileSystem.Models;
+using Microsoft.Azure.Management.DataLake.Store.Models;
+using Microsoft.Rest.Azure;
namespace Microsoft.Azure.Commands.DataLakeStore
{
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/NewAzureRmDataLakeStoreAccount.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/NewAzureRmDataLakeStoreAccount.cs
index 0c7b1d063abc..128aeb0cd42b 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/NewAzureRmDataLakeStoreAccount.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/NewAzureRmDataLakeStoreAccount.cs
@@ -14,10 +14,10 @@
using System.Collections;
using System.Management.Automation;
-using Hyak.Common;
using Microsoft.Azure.Commands.DataLakeStore.Models;
using Microsoft.Azure.Commands.DataLakeStore.Properties;
using Microsoft.Azure.Management.DataLake.Store.Models;
+using Microsoft.Rest.Azure;
namespace Microsoft.Azure.Commands.DataLakeStore
{
@@ -66,13 +66,13 @@ public override void ExecuteCmdlet()
}
catch (CloudException ex)
{
- if (ex.Error != null && !string.IsNullOrEmpty(ex.Error.Code) && ex.Error.Code == "ResourceNotFound" ||
+ if (ex.Body != null && !string.IsNullOrEmpty(ex.Body.Code) && ex.Body.Code == "ResourceNotFound" ||
ex.Message.Contains("ResourceNotFound"))
{
// account does not exists so go ahead and create one
}
- else if (ex.Error != null && !string.IsNullOrEmpty(ex.Error.Code) &&
- ex.Error.Code == "ResourceGroupNotFound" || ex.Message.Contains("ResourceGroupNotFound"))
+ else if (ex.Body != null && !string.IsNullOrEmpty(ex.Body.Code) &&
+ ex.Body.Code == "ResourceGroupNotFound" || ex.Message.Contains("ResourceGroupNotFound"))
{
// resource group not found, let create throw error don't throw from here
}
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/NewAzureRmDataLakeStoreItem.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/NewAzureRmDataLakeStoreItem.cs
index d8ee39eca93f..a98e2cd78d90 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/NewAzureRmDataLakeStoreItem.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/NewAzureRmDataLakeStoreItem.cs
@@ -14,11 +14,11 @@
using System.IO;
using System.Management.Automation;
-using Hyak.Common;
using Microsoft.Azure.Commands.DataLakeStore.Models;
using Microsoft.Azure.Commands.DataLakeStore.Properties;
-using Microsoft.Azure.Management.DataLake.StoreFileSystem.Models;
+using Microsoft.Azure.Management.DataLake.Store.Models;
using Microsoft.PowerShell.Commands;
+using Microsoft.Rest.Azure;
namespace Microsoft.Azure.Commands.DataLakeStore
{
@@ -74,7 +74,6 @@ public override void ExecuteCmdlet()
}
}
- string toReturn;
if (Folder)
{
DataLakeStoreFileSystemClient.CreateDirectory(Path.TransformedPath, Account);
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/RemoveAzureRmDataLakeStoreItem.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/RemoveAzureRmDataLakeStoreItem.cs
index 808c02e25046..e82602bfba89 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/RemoveAzureRmDataLakeStoreItem.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/RemoveAzureRmDataLakeStoreItem.cs
@@ -15,7 +15,7 @@
using System.Management.Automation;
using Microsoft.Azure.Commands.DataLakeStore.Models;
using Microsoft.Azure.Commands.DataLakeStore.Properties;
-using Microsoft.Azure.Management.DataLake.StoreFileSystem.Models;
+using Microsoft.Azure.Management.DataLake.Store.Models;
namespace Microsoft.Azure.Commands.DataLakeStore
{
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/SetAzureRmDataLakeStoreAccount.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/SetAzureRmDataLakeStoreAccount.cs
index 7ff1eb935cf7..68549e171587 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/SetAzureRmDataLakeStoreAccount.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/SetAzureRmDataLakeStoreAccount.cs
@@ -13,7 +13,6 @@
// ----------------------------------------------------------------------------------
using System.Collections;
-using System.Collections.Generic;
using System.Management.Automation;
using Microsoft.Azure.Commands.DataLakeStore.Models;
using Microsoft.Azure.Commands.Tags.Model;
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/TestAzureRmDataLakeStoreAccount.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/TestAzureRmDataLakeStoreAccount.cs
index b7df6b323e88..7d3c4c78f147 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/TestAzureRmDataLakeStoreAccount.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/TestAzureRmDataLakeStoreAccount.cs
@@ -14,8 +14,8 @@
using System.Management.Automation;
using System.Net;
-using Hyak.Common;
using Microsoft.Azure.Commands.DataLakeStore.Models;
+using Microsoft.Rest.Azure;
namespace Microsoft.Azure.Commands.DataLakeStore
{
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/TestAzureRmDataLakeStoreItem.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/TestAzureRmDataLakeStoreItem.cs
index 28fafd60a399..c848547a4798 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/TestAzureRmDataLakeStoreItem.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Commands/TestAzureRmDataLakeStoreItem.cs
@@ -14,7 +14,7 @@
using System.Management.Automation;
using Microsoft.Azure.Commands.DataLakeStore.Models;
-using Microsoft.Azure.Management.DataLake.StoreFileSystem.Models;
+using Microsoft.Azure.Management.DataLake.Store.Models;
namespace Microsoft.Azure.Commands.DataLakeStore
{
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreClient.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreClient.cs
index 7e163ce993d7..d26631aa939b 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreClient.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreClient.cs
@@ -16,19 +16,19 @@
using System.Collections;
using System.Collections.Generic;
using System.Net;
-using Hyak.Common;
-using Microsoft.Azure.Commands.Common.Authentication;
using Microsoft.Azure.Commands.Common.Authentication.Models;
using Microsoft.Azure.Commands.Common.Authentication.Properties;
+using Microsoft.Azure.Commands.Tags.Model;
using Microsoft.Azure.Management.DataLake.Store;
using Microsoft.Azure.Management.DataLake.Store.Models;
-using Microsoft.Azure.Commands.Tags.Model;
+using Microsoft.Rest.Azure;
+using Microsoft.Rest.Azure.OData;
namespace Microsoft.Azure.Commands.DataLakeStore.Models
{
public class DataLakeStoreClient
{
- private readonly DataLakeStoreManagementClient _client;
+ private readonly DataLakeStoreAccountManagementClient _client;
private readonly Guid _subscriptionId;
public DataLakeStoreClient(AzureContext context)
@@ -39,9 +39,8 @@ public DataLakeStoreClient(AzureContext context)
}
_subscriptionId = context.Subscription.Id;
- _client = AzureSession.ClientFactory.CreateClient(context,
+ _client = DataLakeStoreCmdletBase.CreateAdlsClient(context,
AzureEnvironment.Endpoint.ResourceManager);
- _client.UserAgentSuffix = " - PowerShell Client";
}
public DataLakeStoreClient()
@@ -60,18 +59,15 @@ public DataLakeStoreAccount CreateOrUpdateAccount(string resourceGroupName, stri
var tags = TagsConversionHelper.CreateTagDictionary(customTags, true);
- var parameters = new DataLakeStoreAccountCreateOrUpdateParameters
+ var parameters = new DataLakeStoreAccount
{
- DataLakeStoreAccount = new DataLakeStoreAccount
+ Name = accountName,
+ Location = location,
+ Properties = new DataLakeStoreAccountProperties
{
- Name = accountName,
- Location = location,
- Properties = new DataLakeStoreAccountProperties
- {
- DefaultGroup = defaultGroup
- },
- Tags = tags ?? new Dictionary()
- }
+ DefaultGroup = defaultGroup
+ },
+ Tags = tags ?? new Dictionary()
};
var accountExists = false;
@@ -88,20 +84,12 @@ public DataLakeStoreAccount CreateOrUpdateAccount(string resourceGroupName, stri
// get the account we know it doesn't exist and we will attempt to create it fresh.
}
- var response = accountExists
- ? _client.DataLakeStoreAccount.Update(resourceGroupName, parameters)
- : _client.DataLakeStoreAccount.Create(resourceGroupName, parameters);
-
- if (response.Status != OperationStatus.Succeeded)
- {
- throw new CloudException(string.Format(Properties.Resources.LongRunningOperationFailed,
- response.Error.Code, response.Error.Message));
- }
-
- return _client.DataLakeStoreAccount.Get(resourceGroupName, accountName).DataLakeStoreAccount;
+ return accountExists
+ ? _client.Account.Update(resourceGroupName,accountName, parameters)
+ : _client.Account.Create(resourceGroupName, accountName, parameters);
}
- public AzureOperationResponse DeleteAccount(string resourceGroupName, string accountName)
+ public void DeleteAccount(string resourceGroupName, string accountName)
{
if (string.IsNullOrEmpty(resourceGroupName))
{
@@ -113,15 +101,7 @@ public AzureOperationResponse DeleteAccount(string resourceGroupName, string acc
throw new InvalidOperationException(string.Format(Properties.Resources.AccountDoesNotExist, accountName));
}
- var response = _client.DataLakeStoreAccount.Delete(resourceGroupName, accountName);
-
- if (response.Status != OperationStatus.Succeeded)
- {
- throw new CloudException(string.Format(Properties.Resources.LongRunningOperationFailed,
- response.Error.Code, response.Error.Message));
- }
-
- return response;
+ _client.Account.Delete(resourceGroupName, accountName);
}
public bool TestAccount(string resourceGroupName, string accountName)
@@ -149,12 +129,12 @@ public DataLakeStoreAccount GetAccount(string resourceGroupName, string accountN
resourceGroupName = GetResourceGroupByAccount(accountName);
}
- return _client.DataLakeStoreAccount.Get(resourceGroupName, accountName).DataLakeStoreAccount;
+ return _client.Account.Get(resourceGroupName, accountName);
}
public List ListAccounts(string resourceGroupName, string filter, int? top, int? skip)
{
- var parameters = new DataLakeStoreAccountListParameters
+ var parameters = new ODataQuery
{
Filter = filter,
Top = top,
@@ -162,21 +142,24 @@ public List ListAccounts(string resourceGroupName, string
};
var accountList = new List();
- var response = _client.DataLakeStoreAccount.List(resourceGroupName, parameters);
- accountList.AddRange(response.Value);
+ var response = string.IsNullOrEmpty(resourceGroupName) ?
+ _client.Account.List(parameters) :
+ _client.Account.ListByResourceGroup(resourceGroupName, parameters);
+
+ accountList.AddRange(response);
- while (!string.IsNullOrEmpty(response.NextLink))
+ while (!string.IsNullOrEmpty(response.NextPageLink))
{
- response = ListAccountsWithNextLink(response.NextLink);
- accountList.AddRange(response.Value);
+ response = ListAccountsWithNextLink(response.NextPageLink);
+ accountList.AddRange(response);
}
return accountList;
}
- private DataLakeStoreAccountListResponse ListAccountsWithNextLink(string nextLink)
+ private IPage ListAccountsWithNextLink(string nextLink)
{
- return _client.DataLakeStoreAccount.ListNext(nextLink);
+ return _client.Account.ListNext(nextLink);
}
private string GetResourceGroupByAccount(string accountName)
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreCmdletBase.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreCmdletBase.cs
index cbee48896b62..010bbffd62f2 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreCmdletBase.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreCmdletBase.cs
@@ -12,7 +12,12 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
+using System;
+using Microsoft.Azure.Commands.Common.Authentication;
+using Microsoft.Azure.Commands.Common.Authentication.Models;
+using Microsoft.Azure.Commands.Common.Authentication.Properties;
using Microsoft.Azure.Commands.ResourceManager.Common;
+using Microsoft.Rest;
namespace Microsoft.Azure.Commands.DataLakeStore.Models
{
@@ -36,5 +41,40 @@ public DataLakeStoreClient DataLakeStoreClient
set { dataLakeClient = value; }
}
+
+ internal static TClient CreateAdlsClient(AzureContext context, AzureEnvironment.Endpoint endpoint, bool parameterizedBaseUri = false) where TClient : ServiceClient
+ {
+ if (context == null)
+ {
+ throw new ApplicationException(Resources.NoSubscriptionInContext);
+ }
+
+ var creds = AzureSession.AuthenticationFactory.GetServiceClientCredentials(context);
+ var clientFactory = AzureSession.ClientFactory;
+ var newHandlers = clientFactory.GetCustomHandlers();
+ TClient client;
+ if (!parameterizedBaseUri)
+ {
+ client = (newHandlers == null || newHandlers.Length == 0)
+ // string.Empty ensures that we hit the constructors that set the assembly version properly
+ ? clientFactory.CreateCustomArmClient(context.Environment.GetEndpointAsUri(endpoint), creds, string.Empty)
+ : clientFactory.CreateCustomArmClient(context.Environment.GetEndpointAsUri(endpoint), creds, string.Empty, clientFactory.GetCustomHandlers());
+ }
+ else
+ {
+ client = (newHandlers == null || newHandlers.Length == 0)
+ // string.Empty ensures that we hit the constructors that set the assembly version properly
+ ? clientFactory.CreateCustomArmClient(creds, string.Empty, context.Environment.GetEndpoint(endpoint))
+ : clientFactory.CreateCustomArmClient(creds, string.Empty, context.Environment.GetEndpoint(endpoint), clientFactory.GetCustomHandlers());
+ }
+
+ var subscriptionId = typeof(TClient).GetProperty("SubscriptionId");
+ if (subscriptionId != null && context.Subscription != null)
+ {
+ subscriptionId.SetValue(client, context.Subscription.Id.ToString());
+ }
+
+ return client;
+ }
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreFileSystemClient.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreFileSystemClient.cs
index b7d617360b3c..ccb3a30c2cdd 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreFileSystemClient.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreFileSystemClient.cs
@@ -22,13 +22,13 @@
using System.Text;
using System.Threading;
using System.Threading.Tasks;
-using Hyak.Common;
-using Microsoft.Azure.Commands.Common.Authentication;
using Microsoft.Azure.Commands.Common.Authentication.Models;
using Microsoft.Azure.Commands.Common.Authentication.Properties;
-using Microsoft.Azure.Management.DataLake.StoreFileSystem;
-using Microsoft.Azure.Management.DataLake.StoreFileSystem.Models;
+using Microsoft.Azure.Management.DataLake.Store;
+using Microsoft.Azure.Management.DataLake.Store.Models;
using Microsoft.Azure.Management.DataLake.StoreUploader;
+using Microsoft.Rest.Azure;
+using Microsoft.WindowsAzure.Commands.Utilities.Common;
namespace Microsoft.Azure.Commands.DataLakeStore.Models
{
@@ -53,15 +53,10 @@ public DataLakeStoreFileSystemClient(AzureContext context)
throw new ApplicationException(Resources.InvalidDefaultSubscription);
}
- var creds = AzureSession.AuthenticationFactory.GetSubscriptionCloudCredentials(context);
- _client = AzureSession.ClientFactory.CreateCustomClient(creds,
- context.Environment.GetEndpoint(AzureEnvironment.Endpoint.AzureDataLakeStoreFileSystemEndpointSuffix));
- _client.UserAgentSuffix = " - PowerShell Client";
- uniqueActivityIdGenerator = new Random();
- }
+ _client = DataLakeStoreCmdletBase.CreateAdlsClient(context,
+ AzureEnvironment.Endpoint.AzureDataLakeStoreFileSystemEndpointSuffix, true);
- public DataLakeStoreFileSystemClient()
- {
+ uniqueActivityIdGenerator = new Random();
}
#endregion
@@ -73,7 +68,7 @@ public bool TestFileOrFolderExistence(string path, string accountName, out FileT
try
{
var status = _client.FileSystem.GetFileStatus(path, accountName);
- itemType = status.FileStatus.Type;
+ itemType = status.FileStatus.Type ?? FileType.File;
return true;
}
catch (CloudException)
@@ -96,22 +91,23 @@ public void SetOwner(string path, string accountName, string owner, string group
public void SetAcl(string path, string accountName, string aclToSet)
{
- _client.FileSystem.SetAcl(path, accountName, aclToSet);
+ _client.FileSystem.SetAcl(path, aclToSet, accountName);
}
public void ModifyAcl(string path, string accountName, string aclToModify)
{
- _client.FileSystem.ModifyAclEntries(path, accountName, aclToModify);
+ _client.FileSystem.ModifyAclEntries(path, aclToModify, accountName);
}
public void RemoveDefaultAcl(string path, string accountName)
{
- _client.FileSystem.RemoveDefaultAcl(path, accountName);
+ // _client.FileSystem.RemoveDefaultAcl(path, accountName);
+ throw new NotImplementedException();
}
public void RemoveAclEntries(string path, string accountName, string aclsToRemove)
{
- _client.FileSystem.RemoveAclEntries(path, accountName, aclsToRemove);
+ _client.FileSystem.RemoveAclEntries(path, aclsToRemove, accountName);
}
public void RemoveAcl(string path, string accountName)
@@ -121,7 +117,7 @@ public void RemoveAcl(string path, string accountName)
public void UpdateAclEntries(string path, string accountName, string newAclSpec)
{
- _client.FileSystem.ModifyAclEntries(path, accountName, newAclSpec);
+ _client.FileSystem.ModifyAclEntries(path, newAclSpec, accountName);
}
public AclStatus GetAclStatus(string filePath, string accountName)
@@ -149,17 +145,21 @@ public bool CheckAccess(string path, string accountName, string permissionsToChe
public void SetTimes(string path, string accountName, DateTimeOffset modificationTime, DateTimeOffset accessTime)
{
- _client.FileSystem.SetTimes(path, accountName, modificationTime.ToFileTime(), accessTime.ToFileTime());
+ //_client.FileSystem.SetTimes(path, accountName, modificationTime.ToFileTime(), accessTime.ToFileTime());
+ throw new NotImplementedException();
}
public bool SetReplication(string filePath, string accountName, short replicationValue)
{
- return _client.FileSystem.SetReplication(filePath, accountName, replicationValue).OperationResult;
+ // var boolean = _client.FileSystem.SetReplication(filePath, accountName, replicationValue).Boolean;
+ // return boolean != null && boolean.Value;
+ throw new NotImplementedException();
}
public bool RenameFileOrDirectory(string sourcePath, string accountName, string destinationPath)
{
- return _client.FileSystem.Rename(sourcePath, accountName, destinationPath).OperationResult;
+ var boolean = _client.FileSystem.Rename(sourcePath, destinationPath, accountName).Boolean;
+ return boolean != null && boolean.Value;
}
public void DownloadFile(string filePath, string accountName, string destinationFilePath,
@@ -180,7 +180,7 @@ public void DownloadFile(string filePath, string accountName, string destination
Directory.CreateDirectory(Path.GetDirectoryName(destinationFilePath));
}
- var lengthToUse = GetFileStatus(filePath, accountName).Length;
+ var lengthToUse = GetFileStatus(filePath, accountName).Length.Value;
var numRequests = Math.Ceiling(lengthToUse/MaximumBytesPerDownloadRequest);
using (var fileStream = new FileStream(destinationFilePath, FileMode.CreateNew))
@@ -192,30 +192,22 @@ public void DownloadFile(string filePath, string accountName, string destination
filePath, destinationFilePath));
long currentOffset = 0;
var bytesToRequest = (long) MaximumBytesPerDownloadRequest;
- var originalValue = TracingAdapter.IsEnabled;
- try
- {
- //TODO: Remove this logic when defect: 4259238 (located here: http://vstfrd:8080/Azure/RD/_workitems/edit/4259238) is resolved
- TracingAdapter.IsEnabled = false;
- for (long i = 0; i < numRequests; i++)
- {
- cmdletCancellationToken.ThrowIfCancellationRequested();
- progress.PercentComplete = (int) Math.Ceiling((i/numRequests)*100);
- UpdateProgress(progress, cmdletRunningRequest);
- var responseBytes =
- ReadFromFile(
- filePath,
- accountName,
- currentOffset,
- bytesToRequest);
-
- fileStream.Write(responseBytes, 0, responseBytes.Length);
- currentOffset += bytesToRequest;
- }
- }
- finally
+
+ //TODO: defect: 4259238 (located here: http://vstfrd:8080/Azure/RD/_workitems/edit/4259238) needs to be resolved or the tracingadapter work around needs to be put back in
+ for (long i = 0; i < numRequests; i++)
{
- TracingAdapter.IsEnabled = originalValue;
+ cmdletCancellationToken.ThrowIfCancellationRequested();
+ progress.PercentComplete = (int) Math.Ceiling((i/numRequests)*100);
+ UpdateProgress(progress, cmdletRunningRequest);
+ var responseStream =
+ ReadFromFile(
+ filePath,
+ accountName,
+ currentOffset,
+ bytesToRequest);
+
+ responseStream.CopyTo(fileStream);
+ currentOffset += bytesToRequest;
}
// final update to 100% completion
@@ -231,7 +223,7 @@ public void DownloadFile(string filePath, string accountName, string destination
public Stream PreviewFile(string filePath, string accountName, long bytesToPreview,
CancellationToken cmdletCancellationToken, Cmdlet cmdletRunningRequest = null)
{
- var lengthToUse = GetFileStatus(filePath, accountName).Length;
+ var lengthToUse = GetFileStatus(filePath, accountName).Length.Value;
if (bytesToPreview <= lengthToUse && bytesToPreview > 0)
{
lengthToUse = bytesToPreview;
@@ -247,40 +239,32 @@ public Stream PreviewFile(string filePath, string accountName, long bytesToPrevi
bytesToPreview));
long currentOffset = 0;
var bytesToRequest = (long) MaximumBytesPerDownloadRequest;
- var originalValue = TracingAdapter.IsEnabled;
- try
+
+ //TODO: defect: 4259238 (located here: http://vstfrd:8080/Azure/RD/_workitems/edit/4259238) needs to be resolved or the tracingadapter work around needs to be put back in
+ for (long i = 0; i < numRequests; i++)
{
- //TODO: Remove this logic when defect: 4259238 (located here: http://vstfrd:8080/Azure/RD/_workitems/edit/4259238) is resolved
- TracingAdapter.IsEnabled = false;
- for (long i = 0; i < numRequests; i++)
- {
- cmdletCancellationToken.ThrowIfCancellationRequested();
- progress.PercentComplete = (int) Math.Ceiling((i/numRequests)*100);
- UpdateProgress(progress, cmdletRunningRequest);
+ cmdletCancellationToken.ThrowIfCancellationRequested();
+ progress.PercentComplete = (int) Math.Ceiling((i/numRequests)*100);
+ UpdateProgress(progress, cmdletRunningRequest);
- if (lengthToUse < bytesToRequest)
- {
- bytesToRequest = lengthToUse;
- }
- else
- {
- lengthToUse -= bytesToRequest;
- }
+ if (lengthToUse < bytesToRequest)
+ {
+ bytesToRequest = lengthToUse;
+ }
+ else
+ {
+ lengthToUse -= bytesToRequest;
+ }
- var responseBytes =
- ReadFromFile(
- filePath,
- accountName,
- currentOffset,
- bytesToRequest);
+ var responseStream =
+ ReadFromFile(
+ filePath,
+ accountName,
+ currentOffset,
+ bytesToRequest);
- byteStream.Write(responseBytes, 0, responseBytes.Length);
- currentOffset += bytesToRequest;
- }
- }
- finally
- {
- TracingAdapter.IsEnabled = originalValue;
+ responseStream.CopyTo(byteStream);
+ currentOffset += bytesToRequest;
}
// final update to 100% completion
@@ -294,30 +278,20 @@ public Stream PreviewFile(string filePath, string accountName, long bytesToPrevi
return byteStream;
}
- public byte[] ReadFromFile(string filePath, string accountName, long offset, long bytesToRead)
+ public Stream ReadFromFile(string filePath, string accountName, long offset, long bytesToRead)
{
- var parameters = new FileOpenParameters
- {
- Length = bytesToRead,
- Offset = offset
- };
-
- return _client.FileSystem.DirectOpen(filePath, accountName, parameters).FileContents;
+ return _client.FileSystem.Open(filePath, accountName, bytesToRead, offset);
}
public string GetHomeDirectory(string accountName)
{
- return _client.FileSystem.GetHomeDirectory(accountName).Path;
+ // return _client.FileSystem.GetHomeDirectory(accountName).Path;
+ throw new NotImplementedException();
}
- public FileStatuses GetFileStatuses(string folderPath, string accountName, int maxEntriesReturned = 100)
+ public FileStatuses GetFileStatuses(string folderPath, string accountName)
{
- var parameters = new DataLakeStoreFileSystemListParameters
- {
- Top = maxEntriesReturned
- };
-
- return _client.FileSystem.ListFileStatus(folderPath, accountName, parameters).FileStatuses;
+ return _client.FileSystem.ListFileStatus(folderPath, accountName).FileStatuses;
}
public FileStatusProperties GetFileStatus(string filePath, string accountName)
@@ -332,98 +306,97 @@ public ContentSummary GetContentSummary(string path, string accountName)
public bool DeleteFileOrFolder(string path, string accountName, bool isRecursive)
{
- return _client.FileSystem.Delete(path, accountName, isRecursive).OperationResult;
+ var boolean = _client.FileSystem.Delete(path, accountName, isRecursive).Boolean;
+ return boolean != null && boolean.Value;
}
public void CreateSymLink(string sourcePath, string accountName, string destinationPath,
bool createParent = false)
{
- _client.FileSystem.CreateSymLink(sourcePath, accountName, destinationPath, createParent);
+ // _client.FileSystem.CreateSymLink(sourcePath, accountName, destinationPath, createParent);
+ throw new NotImplementedException();
}
public void ConcatenateFiles(string destinationPath, string accountName, string[] filesToConcatenate,
bool deleteDirectory = false)
{
- _client.FileSystem.MsConcat(destinationPath, accountName,
- new MemoryStream(Encoding.UTF8.GetBytes("sources=" + string.Join(",", filesToConcatenate))),
+ _client.FileSystem.MsConcat(destinationPath,
+ new MemoryStream(Encoding.UTF8.GetBytes("sources=" + string.Join(",", filesToConcatenate))),
+ accountName,
deleteDirectory);
}
- public void CreateFile(string filePath, string accountName, Stream contents = null, bool overwrite = false,
- string permissions = null)
+ public void CreateFile(string filePath, string accountName, Stream contents = null, bool overwrite = false)
{
- _client.FileSystem.DirectCreate(filePath, accountName, contents, new FileCreateParameters
- {
- Overwrite = overwrite,
- Permission = permissions
- });
+ _client.FileSystem.Create(filePath, accountName, contents, overwrite: overwrite);
}
- public bool CreateDirectory(string dirPath, string accountName, string permissions = null)
+ public bool CreateDirectory(string dirPath, string accountName)
{
- return _client.FileSystem.Mkdirs(dirPath, accountName, permissions).OperationResult;
+ var boolean = _client.FileSystem.Mkdirs(dirPath, accountName).Boolean;
+ return boolean != null && boolean.Value;
}
public void AppendToFile(string filePath, string accountName, Stream contents)
{
- _client.FileSystem.DirectAppend(filePath, accountName, contents, null);
+ _client.FileSystem.Append(filePath, contents, accountName);
}
public void CopyFile(string destinationPath, string accountName, string sourcePath,
CancellationToken cmdletCancellationToken, int threadCount = -1, bool overwrite = false, bool resume = false,
bool isBinary = false, Cmdlet cmdletRunningRequest = null, ProgressRecord parentProgress = null)
{
- var originalValue = TracingAdapter.IsEnabled;
- FileType ignoredType;
-
+ FileType ignoredType;
if (!overwrite && TestFileOrFolderExistence(destinationPath, accountName, out ignoredType))
{
throw new InvalidOperationException(string.Format(Properties.Resources.LocalFileAlreadyExists, destinationPath));
}
- try
+ //TODO: defect: 4259238 (located here: http://vstfrd:8080/Azure/RD/_workitems/edit/4259238) needs to be resolved or the tracingadapter work around needs to be put back in
+ // default the number of threads to use to the processor count
+ if (threadCount < 1)
{
- //TODO: Remove this logic when defect: 4259238 (located here: http://vstfrd:8080/Azure/RD/_workitems/edit/4259238) is resolved
- TracingAdapter.IsEnabled = false;
+ threadCount = Environment.ProcessorCount;
+ }
- // default the number of threads to use to the processor count
- if (threadCount < 1)
- {
- threadCount = Environment.ProcessorCount;
- }
+ // Progress bar indicator.
+ var description = string.Format("Copying File: {0} to DataLakeStore Location: {1} for account: {2}",
+ sourcePath, destinationPath, accountName);
+ var progress = new ProgressRecord(
+ uniqueActivityIdGenerator.Next(0, 10000000),
+ "Upload to DataLakeStore Store",
+ description)
+ {
+ PercentComplete = 0
+ };
- // Progress bar indicator.
- var description = string.Format("Copying File: {0} to DataLakeStore Location: {1} for account: {2}",
- sourcePath, destinationPath, accountName);
- var progress = new ProgressRecord(
- uniqueActivityIdGenerator.Next(0, 10000000),
- "Upload to DataLakeStore Store",
- description)
- {
- PercentComplete = 0
- };
+ if (parentProgress != null)
+ {
+ progress.ParentActivityId = parentProgress.ActivityId;
+ }
- if (parentProgress != null)
+ // On update from the Data Lake store uploader, capture the progress.
+ var progressTracker = new System.Progress();
+ progressTracker.ProgressChanged += (s, e) =>
+ {
+ lock (ConsoleOutputLock)
{
- progress.ParentActivityId = parentProgress.ActivityId;
+ progress.PercentComplete = (int) (1.0*e.UploadedByteCount/e.TotalFileLength*100);
}
+ };
+
+ var uploadParameters = new UploadParameters(sourcePath, destinationPath, accountName, threadCount,
+ overwrite, resume, isBinary);
+ var uploader = new DataLakeStoreUploader(uploadParameters,
+ new DataLakeStoreFrontEndAdapter(accountName, _client, cmdletCancellationToken),
+ cmdletCancellationToken,
+ progressTracker);
+
+ var previousExpect100 = ServicePointManager.Expect100Continue;
+ try
+ {
+ ServicePointManager.Expect100Continue = false;
- // On update from the Data Lake store uploader, capture the progress.
- var progressTracker = new System.Progress();
- progressTracker.ProgressChanged += (s, e) =>
- {
- lock (ConsoleOutputLock)
- {
- progress.PercentComplete = (int) (1.0*e.UploadedByteCount/e.TotalFileLength*100);
- }
- };
-
- var uploadParameters = new UploadParameters(sourcePath, destinationPath, accountName, threadCount,
- overwrite, resume, isBinary);
- var uploader = new DataLakeStoreUploader(uploadParameters,
- new DataLakeStoreFrontEndAdapter(accountName, _client, cmdletCancellationToken),
- cmdletCancellationToken,
- progressTracker);
// Execute the uploader.
var uploadTask = Task.Run(() =>
{
@@ -436,7 +409,7 @@ public void CopyFile(string destinationPath, string accountName, string sourcePa
}
finally
{
- TracingAdapter.IsEnabled = originalValue;
+ ServicePointManager.Expect100Continue = previousExpect100;
}
}
@@ -485,14 +458,15 @@ public void CopyDirectory(
// we need to override the default .NET value for max connections to a host to our number of threads, if necessary (otherwise we won't achieve the parallelism we want)
var previousDefaultConnectionLimit = ServicePointManager.DefaultConnectionLimit;
- ServicePointManager.DefaultConnectionLimit =
- Math.Max((internalFolderThreads*internalFileThreads) + internalFolderThreads,
- ServicePointManager.DefaultConnectionLimit);
- var originalValue = TracingAdapter.IsEnabled;
+ var previousExpect100 = ServicePointManager.Expect100Continue;
try
{
- //TODO: Remove this logic when defect: 4259238 (located here: http://vstfrd:8080/Azure/RD/_workitems/edit/4259238) is resolved
- TracingAdapter.IsEnabled = false;
+ ServicePointManager.DefaultConnectionLimit =
+ Math.Max((internalFolderThreads*internalFileThreads) + internalFolderThreads,
+ ServicePointManager.DefaultConnectionLimit);
+ ServicePointManager.Expect100Continue = false;
+
+ //TODO: defect: 4259238 (located here: http://vstfrd:8080/Azure/RD/_workitems/edit/4259238) needs to be resolved or the tracingadapter work around needs to be put back in
while (allDirectories.Count > 0)
{
var currentDir = allDirectories.Pop();
@@ -526,7 +500,11 @@ public void CopyDirectory(
// wrapped the parallel execution in a container task, which is
// then monitored from the main thread.
// TODO: enable resumability in the event that copy fails somewhere in the middle
- var folderOptions = new ParallelOptions();
+ var folderOptions = new ParallelOptions
+ {
+ CancellationToken = cmdletCancellationToken
+ };
+
if (folderThreadCount > 0)
{
folderOptions.MaxDegreeOfParallelism = folderThreadCount;
@@ -597,7 +575,7 @@ public void CopyDirectory(
}
// sleep for a half of a second.
- Thread.Sleep(500);
+ TestMockSupport.Delay(500);
}
if (task.IsFaulted && !task.IsCanceled)
@@ -653,49 +631,48 @@ public void CopyDirectory(
}
}
}
- }
- finally
- {
- // set the max limit back to the original value.
- ServicePointManager.DefaultConnectionLimit = previousDefaultConnectionLimit;
- TracingAdapter.IsEnabled = originalValue;
- }
- if (allFailedDirs.Count > 0 && !cmdletCancellationToken.IsCancellationRequested)
- {
- var errString =
- "The following {0} directories could not be opened and their contents must be copied up with the single file copy command: {1}";
- if (cmdletRunningRequest != null)
- {
- cmdletRunningRequest.WriteWarning(
- string.Format(errString, allFailedDirs.Count, string.Join(",\r\n", allFailedDirs)));
- }
- else
+ if (allFailedDirs.Count > 0 && !cmdletCancellationToken.IsCancellationRequested)
{
- Console.WriteLine(errString, allFailedDirs.Count, string.Join(",\r\n", allFailedDirs));
+ var errString =
+ "The following {0} directories could not be opened and their contents must be copied up with the single file copy command: {1}";
+ if (cmdletRunningRequest != null)
+ {
+ cmdletRunningRequest.WriteWarning(
+ string.Format(errString, allFailedDirs.Count, string.Join(",\r\n", allFailedDirs)));
+ }
+ else
+ {
+ Console.WriteLine(errString, allFailedDirs.Count, string.Join(",\r\n", allFailedDirs));
+ }
}
- }
- if (allFailedFiles.Count > 0 && !cmdletCancellationToken.IsCancellationRequested)
- {
- var errString =
- "The following {0} files could not be copied and must be copied up with the single file copy command: {1}";
- if (cmdletRunningRequest != null)
+ if (allFailedFiles.Count > 0 && !cmdletCancellationToken.IsCancellationRequested)
{
- cmdletRunningRequest.WriteWarning(
- string.Format(errString, allFailedFiles.Count, string.Join(",\r\n", allFailedFiles)));
+ var errString =
+ "The following {0} files could not be copied and must be copied up with the single file copy command: {1}";
+ if (cmdletRunningRequest != null)
+ {
+ cmdletRunningRequest.WriteWarning(
+ string.Format(errString, allFailedFiles.Count, string.Join(",\r\n", allFailedFiles)));
+ }
+ else
+ {
+ Console.WriteLine(errString, allFailedFiles.Count, string.Join(",\r\n", allFailedFiles));
+ }
}
- else
+
+ if (!cmdletCancellationToken.IsCancellationRequested)
{
- Console.WriteLine(errString, allFailedFiles.Count, string.Join(",\r\n", allFailedFiles));
+ progress.PercentComplete = 100;
+ progress.RecordType = ProgressRecordType.Completed;
+ UpdateProgress(progress, cmdletRunningRequest);
}
}
-
- if (!cmdletCancellationToken.IsCancellationRequested)
+ finally
{
- progress.PercentComplete = 100;
- progress.RecordType = ProgressRecordType.Completed;
- UpdateProgress(progress, cmdletRunningRequest);
+ ServicePointManager.DefaultConnectionLimit = previousDefaultConnectionLimit;
+ ServicePointManager.Expect100Continue = previousExpect100;
}
}
@@ -816,7 +793,7 @@ private void TrackUploadProgress(Task uploadTask, ProgressRecord uploadProgress,
}
}
- Thread.Sleep(250);
+ TestMockSupport.Delay(250);
}
if (uploadTask.IsCanceled || token.IsCancellationRequested)
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreFileSystemCmdletBase.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreFileSystemCmdletBase.cs
index ae82288e65ff..8f9194834abc 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreFileSystemCmdletBase.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreFileSystemCmdletBase.cs
@@ -16,10 +16,10 @@
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
-using Hyak.Common;
using Microsoft.Azure.Commands.DataLakeStore.Properties;
using Microsoft.Azure.Commands.ResourceManager.Common;
using Microsoft.PowerShell.Commands;
+using Microsoft.Rest.Azure;
namespace Microsoft.Azure.Commands.DataLakeStore.Models
{
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreItem.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreItem.cs
index 401e351e2320..7c3815db4df4 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreItem.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreItem.cs
@@ -13,12 +13,7 @@
// ----------------------------------------------------------------------------------
using System;
-using System.Collections;
-using System.Collections.Generic;
-using System.Linq;
-using Hyak.Common;
-using Microsoft.Azure.Commands.DataLakeStore.Properties;
-using Microsoft.Azure.Management.DataLake.StoreFileSystem.Models;
+using Microsoft.Azure.Management.DataLake.Store.Models;
namespace Microsoft.Azure.Commands.DataLakeStore.Models
{
@@ -29,25 +24,12 @@ public class DataLakeStoreItem : FileStatusProperties
{
public DateTimeOffset LastWriteTime { get; set; }
public string Name { get; set; }
- public DataLakeStoreItem(FileStatusProperties property)
+ public DataLakeStoreItem(FileStatusProperties property, string optionalPath = "") :
+ base(property.AccessTime, property.BlockSize, property.ChildrenNum, property.Group, property.Length, property.ModificationTime, property.Owner, string.IsNullOrEmpty(optionalPath) ? property.PathSuffix : optionalPath, property.Permission, property.Type)
{
- // copy over all initial properties
- this.PathSuffix = property.PathSuffix;
- this.BlockSize = property.BlockSize;
- this.ChildrenNum = property.ChildrenNum;
- this.FileId = property.FileId;
- this.Group = property.Group;
- this.Length = property.Length;
- this.ModificationTime = property.ModificationTime;
- this.Owner = property.Owner;
- this.Permission = property.Permission;
- this.AccessTime = property.AccessTime;
- this.Replication = property.Replication;
- this.Type = property.Type;
-
// create two new properties
- this.LastWriteTime = new DateTime(1970, 1, 1, 0, 0, 0, 0).AddMilliseconds(this.ModificationTime).ToLocalTime();
- this.Name = this.PathSuffix;
+ this.LastWriteTime = new DateTime(1970, 1, 1, 0, 0, 0, 0).AddMilliseconds((long)this.ModificationTime).ToLocalTime();
+ this.Name = property.PathSuffix;
}
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreItemAcl.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreItemAcl.cs
index bf377486be3b..dbd863ef1492 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreItemAcl.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreItemAcl.cs
@@ -15,9 +15,9 @@
using System.Collections;
using System.Collections.Generic;
using System.Linq;
-using Hyak.Common;
using Microsoft.Azure.Commands.DataLakeStore.Properties;
-using Microsoft.Azure.Management.DataLake.StoreFileSystem.Models;
+using Microsoft.Azure.Management.DataLake.Store.Models;
+using Microsoft.Rest.Azure;
namespace Microsoft.Azure.Commands.DataLakeStore.Models
{
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreItemPermissionInstance.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreItemPermissionInstance.cs
index 0f214e83da4b..6534b499e6c4 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreItemPermissionInstance.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStoreItemPermissionInstance.cs
@@ -15,7 +15,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
-using Hyak.Common;
using Microsoft.Azure.Commands.DataLakeStore.Properties;
namespace Microsoft.Azure.Commands.DataLakeStore.Models
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStorePathInstance.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStorePathInstance.cs
index f521cf88768d..6ab19cedd271 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStorePathInstance.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Models/DataLakeStorePathInstance.cs
@@ -13,7 +13,6 @@
// ----------------------------------------------------------------------------------
using System;
-using Hyak.Common;
using Microsoft.Azure.Commands.DataLakeStore.Properties;
namespace Microsoft.Azure.Commands.DataLakeStore.Models
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Properties/Resources.Designer.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Properties/Resources.Designer.cs
index 99fdaa93a208..a9ae8db2bae9 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Properties/Resources.Designer.cs
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Properties/Resources.Designer.cs
@@ -8,10 +8,14 @@
//
//------------------------------------------------------------------------------
+using System.CodeDom.Compiler;
+using System.ComponentModel;
+using System.Diagnostics;
+using System.Diagnostics.CodeAnalysis;
+using System.Globalization;
+using System.Runtime.CompilerServices;
+
namespace Microsoft.Azure.Commands.DataLakeStore.Properties {
- using System;
-
-
///
/// A strongly-typed resource class, for looking up localized strings, etc.
///
@@ -19,27 +23,27 @@ namespace Microsoft.Azure.Commands.DataLakeStore.Properties {
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [DebuggerNonUserCode()]
+ [CompilerGenerated()]
internal class Resources {
- private static global::System.Resources.ResourceManager resourceMan;
+ private static System.Resources.ResourceManager resourceMan;
- private static global::System.Globalization.CultureInfo resourceCulture;
+ private static CultureInfo resourceCulture;
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
///
/// Returns the cached ResourceManager instance used by this class.
///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Resources.ResourceManager ResourceManager {
+ [EditorBrowsable(EditorBrowsableState.Advanced)]
+ internal static System.Resources.ResourceManager ResourceManager {
get {
- if (object.ReferenceEquals(resourceMan, null)) {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.Commands.DataLakeStore.Properties.Resources", typeof(Resources).Assembly);
+ if (ReferenceEquals(resourceMan, null)) {
+ System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Microsoft.Azure.Commands.DataLakeStore.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
@@ -50,8 +54,8 @@ internal Resources() {
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Globalization.CultureInfo Culture {
+ [EditorBrowsable(EditorBrowsableState.Advanced)]
+ internal static CultureInfo Culture {
get {
return resourceCulture;
}
diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/packages.config b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/packages.config
index 73d27303da8a..8cf732332d2b 100644
--- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/packages.config
+++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/packages.config
@@ -3,9 +3,8 @@
-
-
-
+
+
@@ -13,6 +12,7 @@
+
diff --git a/src/ResourceManager/DataLakeStore/DataLakeStore.sln b/src/ResourceManager/DataLakeStore/DataLakeStore.sln
index 5d24df3d20b3..430366415f0a 100644
--- a/src/ResourceManager/DataLakeStore/DataLakeStore.sln
+++ b/src/ResourceManager/DataLakeStore/DataLakeStore.sln
@@ -1,6 +1,6 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 2013
-VisualStudioVersion = 12.0.31101.0
+# Visual Studio 14
+VisualStudioVersion = 14.0.24720.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{95C16AED-FD57-42A0-86C3-2CF4300A4817}"
EndProject
diff --git a/src/ServiceManagement/Common/Commands.Common.Test/Common/MockSubsciptionFactory.cs b/src/ServiceManagement/Common/Commands.Common.Test/Common/MockSubsciptionFactory.cs
index 8572aec6ff4e..6600599b4e90 100644
--- a/src/ServiceManagement/Common/Commands.Common.Test/Common/MockSubsciptionFactory.cs
+++ b/src/ServiceManagement/Common/Commands.Common.Test/Common/MockSubsciptionFactory.cs
@@ -77,6 +77,11 @@ public void RemoveHandler(Type handlerType)
throw new NotImplementedException();
}
+ public DelegatingHandler[] GetCustomHandlers()
+ {
+ throw new NotImplementedException();
+ }
+
public void AddUserAgent(string productName, string productVersion)
{
throw new NotImplementedException();