diff --git a/src/SDKs/DataLake.Analytics/AzSdk.RP.props b/src/SDKs/DataLake.Analytics/AzSdk.RP.props
new file mode 100644
index 000000000000..0ae28e387984
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/AzSdk.RP.props
@@ -0,0 +1,7 @@
+
+
+
+ DataLakeAnalytics_2016-11-01;DataLakeAnalyticsCatalogManagementClient_2016-11-01;DataLakeAnalyticsJobManagementClient_2017-09-01-preview;
+ $(PackageTags);$(CommonTags);$(AzureApiTag);
+
+
\ No newline at end of file
diff --git a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/AccountOperationTests.cs b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/AccountOperationTests.cs
index 17b1b79d791b..462abcba968d 100644
--- a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/AccountOperationTests.cs
+++ b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/AccountOperationTests.cs
@@ -23,9 +23,19 @@ public void CreateGetUpdateDeleteTest()
{
commonData = new CommonTestFixture(context, true);
var clientToUse = this.GetDataLakeAnalyticsAccountManagementClient(context);
- // ensure the account doesn't exist
+
+ // Ensure the account doesn't exist and that the account name is not available
Assert.False(clientToUse.Account.Exists(commonData.ResourceGroupName, commonData.DataLakeAnalyticsAccountName));
+ var checkNameParam = new CheckNameAvailabilityParameters
+ {
+ Name = commonData.DataLakeAnalyticsAccountName
+ };
+
+ var responseNameCheck = clientToUse.Account.CheckNameAvailability("EastUS2", checkNameParam);
+
+ Assert.True(responseNameCheck.NameAvailable);
+
// Create a test account
var responseCreate =
clientToUse.Account.Create(commonData.ResourceGroupName, commonData.DataLakeAnalyticsAccountName,
@@ -43,18 +53,22 @@ public void CreateGetUpdateDeleteTest()
},
Tags = new Dictionary
{
- { "testkey","testvalue" }
+ { "testkey", "testvalue" }
},
NewTier = TierType.Commitment100AUHours
});
- // verify the account exists
+ // Verify the account exists and that the account name is no longer available
Assert.True(clientToUse.Account.Exists(commonData.ResourceGroupName, commonData.DataLakeAnalyticsAccountName));
- // get the account and ensure that all the values are properly set.
+ responseNameCheck = clientToUse.Account.CheckNameAvailability("EastUS2", checkNameParam);
+
+ Assert.False(responseNameCheck.NameAvailable);
+
+ // Get the account and ensure that all the values are properly set.
var responseGet = clientToUse.Account.Get(commonData.ResourceGroupName, commonData.DataLakeAnalyticsAccountName);
- // validate the account creation process
+ // Validate the account creation process
Assert.True(responseGet.ProvisioningState == DataLakeAnalyticsAccountStatus.Creating || responseGet.ProvisioningState == DataLakeAnalyticsAccountStatus.Succeeded);
Assert.NotNull(responseCreate.Id);
Assert.NotNull(responseGet.Id);
@@ -62,12 +76,11 @@ public void CreateGetUpdateDeleteTest()
Assert.Equal(commonData.Location, responseGet.Location);
Assert.Equal(commonData.DataLakeAnalyticsAccountName, responseGet.Name);
Assert.Equal("Microsoft.DataLakeAnalytics/accounts", responseGet.Type);
-
Assert.True(responseGet.DataLakeStoreAccounts.Count == 1);
Assert.True(responseGet.DataLakeStoreAccounts.ToList()[0].Name.Equals(commonData.DataLakeStoreAccountName));
- // wait for provisioning state to be Succeeded
- // we will wait a maximum of 15 minutes for this to happen and then report failures
+ // Wait for provisioning state to be Succeeded
+ // We will wait a maximum of 15 minutes for this to happen and then report failures
int timeToWaitInMinutes = 15;
int minutesWaited = 0;
while (responseGet.ProvisioningState != DataLakeAnalyticsAccountStatus.Succeeded && responseGet.ProvisioningState != DataLakeAnalyticsAccountStatus.Failed && minutesWaited <= timeToWaitInMinutes)
@@ -81,15 +94,16 @@ public void CreateGetUpdateDeleteTest()
Assert.True(responseGet.ProvisioningState == DataLakeAnalyticsAccountStatus.Succeeded);
Assert.Equal(TierType.Commitment100AUHours, responseGet.CurrentTier);
Assert.Equal(TierType.Commitment100AUHours, responseGet.NewTier);
+
// Update the account and confirm the updates make it in.
var newAccount = responseGet;
var firstStorageAccountName = newAccount.DataLakeStoreAccounts.ToList()[0].Name;
newAccount.Tags = new Dictionary
{
- {"updatedKey", "updatedValue"}
+ { "updatedKey", "updatedValue" }
};
- // need to null out deep properties to prevent an error
+ // Need to null out deep properties to prevent an error
newAccount.DataLakeStoreAccounts = null;
newAccount.StorageAccounts = null;
@@ -103,7 +117,7 @@ public void CreateGetUpdateDeleteTest()
Assert.Equal(DataLakeAnalyticsAccountStatus.Succeeded, updateResponse.ProvisioningState);
- // get the account and ensure that all the values are properly set.
+ // Get the account and ensure that all the values are properly set.
var updateResponseGet = clientToUse.Account.Get(commonData.ResourceGroupName, commonData.DataLakeAnalyticsAccountName);
Assert.NotNull(updateResponse.Id);
@@ -112,7 +126,7 @@ public void CreateGetUpdateDeleteTest()
Assert.Equal(newAccount.Name, updateResponseGet.Name);
Assert.Equal(responseGet.Type, updateResponseGet.Type);
- // verify the new tags. NOTE: sequence equal is not ideal if we have more than 1 tag, since the ordering can change.
+ // Verify the new tags. NOTE: sequence equal is not ideal if we have more than 1 tag, since the ordering can change.
Assert.True(updateResponseGet.Tags.SequenceEqual(newAccount.Tags));
Assert.True(updateResponseGet.DataLakeStoreAccounts.Count == 1);
Assert.True(updateResponseGet.DataLakeStoreAccounts.ToList()[0].Name.Equals(firstStorageAccountName));
@@ -136,22 +150,23 @@ public void CreateGetUpdateDeleteTest()
// Assert that there are at least two accounts in the list
Assert.True(listResponse.Count() > 1);
- // now list with the resource group
+ // Now list with the resource group
listResponse = clientToUse.Account.ListByResourceGroup(commonData.ResourceGroupName);
// Assert that there are at least two accounts in the list
Assert.True(listResponse.Count() > 1);
// Add, list and remove a data source to the first account
- // validate the data source doesn't exist first
+ // Validate the data source doesn't exist first
Assert.False(clientToUse.Account.DataLakeStoreAccountExists(commonData.ResourceGroupName, commonData.DataLakeAnalyticsAccountName, commonData.SecondDataLakeStoreAccountName));
+
clientToUse.DataLakeStoreAccounts.Add(
commonData.ResourceGroupName,
commonData.DataLakeAnalyticsAccountName,
commonData.SecondDataLakeStoreAccountName,
new AddDataLakeStoreParameters {Suffix = commonData.DataLakeStoreAccountSuffix});
- // verify that the store account does exist now
+ // Verify that the store account does exist now
Assert.True(clientToUse.Account.DataLakeStoreAccountExists(commonData.ResourceGroupName, commonData.DataLakeAnalyticsAccountName, commonData.SecondDataLakeStoreAccountName));
// Get the data sources and confirm there are 2
@@ -161,7 +176,7 @@ public void CreateGetUpdateDeleteTest()
Assert.Equal(2, getDataSourceResponse.Count());
- // get the specific data source
+ // Get the specific data source
var getSingleDataSourceResponse =
clientToUse.DataLakeStoreAccounts.Get(commonData.ResourceGroupName,
commonData.DataLakeAnalyticsAccountName, commonData.SecondDataLakeStoreAccountName);
@@ -181,7 +196,7 @@ public void CreateGetUpdateDeleteTest()
Assert.Equal(1, getDataSourceResponse.Count());
// Add, list and remove an azure blob source to the first account
- // verify the blob doesn't exist
+ // Verify the blob doesn't exist
Assert.False(clientToUse.Account.StorageAccountExists(commonData.ResourceGroupName, commonData.DataLakeAnalyticsAccountName, commonData.StorageAccountName));
clientToUse.StorageAccounts.Add(
commonData.ResourceGroupName,
@@ -193,7 +208,7 @@ public void CreateGetUpdateDeleteTest()
AccessKey = commonData.StorageAccountAccessKey
});
- // verify the blob exists now
+ // Verify the blob exists now
Assert.True(clientToUse.Account.StorageAccountExists(commonData.ResourceGroupName, commonData.DataLakeAnalyticsAccountName, commonData.StorageAccountName));
// Get the data sources and confirm there is 1
@@ -223,16 +238,25 @@ public void CreateGetUpdateDeleteTest()
Assert.Equal(0, getDataSourceBlobResponse.Count());
+ // Check that Locations_GetCapability and Operations_List are functional
+ var responseGetCapability = clientToUse.Locations.GetCapability("EastUS2");
+
+ Assert.NotNull(responseGetCapability);
+
+ var responseListOps = clientToUse.Operations.List();
+
+ Assert.NotNull(responseListOps);
+
// Delete the account and confirm that it is deleted.
clientToUse.Account.Delete(commonData.ResourceGroupName, newAccount.Name);
- // delete the account again and make sure it continues to result in a succesful code.
+ // Delete the account again and make sure it continues to result in a succesful code.
clientToUse.Account.Delete(commonData.ResourceGroupName, newAccount.Name);
- // delete the account with its old name, which should also succeed.
+ // Delete the account with its old name, which should also succeed.
clientToUse.Account.Delete(commonData.ResourceGroupName, commonData.DataLakeAnalyticsAccountName);
- // delete the second account that was created to ensure that we properly clean up after ourselves.
+ // Delete the second account that was created to ensure that we properly clean up after ourselves.
clientToUse.Account.Delete(commonData.ResourceGroupName, accountToChange.Name);
}
}
@@ -249,7 +273,8 @@ public void ComputePolicyCrudTest()
var groupPolicyObjectId = new Guid("0583cfd7-60f5-43f0-9597-68b85591fc69");
var groupPolicyName = TestUtilities.GenerateName("adlapolicy2");
var adlaAccountName = TestUtilities.GenerateName("adlaacct1");
- // ensure the account doesn't exist
+
+ // Ensure the account doesn't exist
Assert.False(clientToUse.Account.Exists(commonData.ResourceGroupName, adlaAccountName));
// Create a test account
@@ -281,15 +306,15 @@ public void ComputePolicyCrudTest()
}
});
- // get the account and ensure that all the values are properly set.
+ // Get the account and ensure that all the values are properly set.
var responseGet = clientToUse.Account.Get(commonData.ResourceGroupName, adlaAccountName);
- // validate compute policies are set on creation.
+ // Validate compute policies are set on creation.
Assert.True(responseGet.ComputePolicies.Count == 1);
Assert.True(responseGet.ComputePolicies.ToList()[0].Name.Equals(userPolicyName));
- // validate compute policy CRUD
- // add another account
+ // Validate compute policy CRUD
+ // Add another account
var computePolicy = clientToUse.ComputePolicies.CreateOrUpdate(
commonData.ResourceGroupName,
adlaAccountName,
@@ -318,7 +343,7 @@ public void ComputePolicyCrudTest()
Assert.Equal(groupPolicyObjectId, computePolicy.ObjectId);
Assert.Equal(AADObjectType.Group, computePolicy.ObjectType);
- // list all policies
+ // List all policies
var policyList = clientToUse.ComputePolicies.ListByAccount(
commonData.ResourceGroupName,
adlaAccountName);
@@ -337,7 +362,7 @@ public void ComputePolicyCrudTest()
Assert.Equal(1, policyList.Count());
- // delete the account
+ // Delete the account
clientToUse.Account.Delete(commonData.ResourceGroupName, adlaAccountName);
}
}
@@ -355,6 +380,7 @@ public void FirewallTest()
var firewallEnd = "127.0.0.2";
var firewallRuleName1 = TestUtilities.GenerateName("firerule1");
var adlaAcocunt = TestUtilities.GenerateName("adla01");
+
// Create a test account
var responseCreate =
clientToUse.Account.Create(commonData.ResourceGroupName, adlaAcocunt,
@@ -380,10 +406,10 @@ public void FirewallTest()
Assert.Equal(DataLakeAnalyticsAccountStatus.Succeeded, responseCreate.ProvisioningState);
- // get the account and ensure that all the values are properly set.
+ // Get the account and ensure that all the values are properly set.
var responseGet = clientToUse.Account.Get(commonData.ResourceGroupName, adlaAcocunt);
- // validate the account creation process
+ // Validate the account creation process
Assert.Equal(DataLakeAnalyticsAccountStatus.Succeeded, responseGet.ProvisioningState);
Assert.NotNull(responseCreate.Id);
Assert.NotNull(responseGet.Id);
@@ -392,15 +418,13 @@ public void FirewallTest()
Assert.Equal(adlaAcocunt, responseGet.Name);
Assert.Equal("Microsoft.DataLakeAnalytics/accounts", responseGet.Type);
- // validate firewall state
+ // Validate firewall state
Assert.Equal(FirewallState.Enabled, responseGet.FirewallState);
Assert.Equal(1, responseGet.FirewallRules.Count());
Assert.Equal(firewallStart, responseGet.FirewallRules[0].StartIpAddress);
Assert.Equal(firewallEnd, responseGet.FirewallRules[0].EndIpAddress);
Assert.Equal(firewallRuleName1, responseGet.FirewallRules[0].Name);
-
- // TODO: re-enable when this is re-enabled on the server side.
- //Assert.Equal(FirewallAllowAzureIpsState.Enabled, responseGet.FirewallAllowAzureIps);
+ Assert.Equal(FirewallAllowAzureIpsState.Enabled, responseGet.FirewallAllowAzureIps);
// Test getting the specific firewall rules
var firewallRule = clientToUse.FirewallRules.Get(commonData.ResourceGroupName, adlaAcocunt, firewallRuleName1);
@@ -408,7 +432,6 @@ public void FirewallTest()
Assert.Equal(firewallEnd, firewallRule.EndIpAddress);
Assert.Equal(firewallRuleName1, firewallRule.Name);
-
var updatedFirewallStart = "192.168.0.0";
var updatedFirewallEnd = "192.168.0.1";
firewallRule.StartIpAddress = updatedFirewallStart;
@@ -416,11 +439,12 @@ public void FirewallTest()
// Update the firewall rule to change the start/end ip addresses
firewallRule = clientToUse.FirewallRules.CreateOrUpdate(commonData.ResourceGroupName, adlaAcocunt, firewallRuleName1, firewallRule);
+
Assert.Equal(updatedFirewallStart, firewallRule.StartIpAddress);
Assert.Equal(updatedFirewallEnd, firewallRule.EndIpAddress);
Assert.Equal(firewallRuleName1, firewallRule.Name);
- // just update the firewall rule start IP
+ // Just update the firewall rule start IP
firewallRule = clientToUse.FirewallRules.Update(
commonData.ResourceGroupName,
adlaAcocunt,
diff --git a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/CatalogOperationTests.cs b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/CatalogOperationTests.cs
index 30abc295968d..5f1c187f540f 100644
--- a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/CatalogOperationTests.cs
+++ b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/CatalogOperationTests.cs
@@ -20,14 +20,17 @@ public class CatalogOperationTests : TestBase
[Fact]
public void GetCatalogItemsTest()
{
- // this test currently tests for Database, table TVF, view, types and procedure
+ // This test currently tests for Database, table TVF, view, types and procedure, and ACLs
using (var context = MockContext.Start(this.GetType().FullName))
{
commonData = new CommonTestFixture(context);
commonData.HostUrl =
commonData.DataLakeAnalyticsManagementHelper.TryCreateDataLakeAnalyticsAccount(commonData.ResourceGroupName,
commonData.Location, commonData.DataLakeStoreAccountName, commonData.SecondDataLakeAnalyticsAccountName);
-
+
+ // Wait 5 minutes for the account setup
+ TestUtilities.Wait(300000);
+
commonData.DataLakeAnalyticsManagementHelper.CreateCatalog(commonData.ResourceGroupName,
commonData.SecondDataLakeAnalyticsAccountName, commonData.DatabaseName, commonData.TableName, commonData.TvfName, commonData.ViewName, commonData.ProcName);
using (var clientToUse = commonData.GetDataLakeAnalyticsCatalogManagementClient(context))
@@ -37,7 +40,7 @@ public void GetCatalogItemsTest()
Assert.True(dbListResponse.Count() >= 1);
- // look for the DB we created
+ // Look for the db we created
Assert.True(dbListResponse.Any(db => db.Name.Equals(commonData.DatabaseName)));
// Get the specific Database as well
@@ -53,7 +56,7 @@ public void GetCatalogItemsTest()
Assert.True(tableListResponse.Count() >= 1);
Assert.True(tableListResponse.ElementAt(0).ColumnList != null && tableListResponse.ElementAt(0).ColumnList.Count() > 0);
- // look for the table we created
+ // Look for the table we created
Assert.True(tableListResponse.Any(table => table.Name.Equals(commonData.TableName)));
// Get the table list with only basic info
@@ -64,7 +67,7 @@ public void GetCatalogItemsTest()
Assert.True(tableListResponse.Count() >= 1);
Assert.True(tableListResponse.ElementAt(0).ColumnList == null || tableListResponse.ElementAt(0).ColumnList.Count() == 0);
- // get the table list in just the db
+ // Get the table list in just the db
tableListResponse = clientToUse.Catalog.ListTablesByDatabase(
commonData.SecondDataLakeAnalyticsAccountName,
commonData.DatabaseName);
@@ -72,7 +75,7 @@ public void GetCatalogItemsTest()
Assert.True(tableListResponse.Count() >= 1);
Assert.True(tableListResponse.ElementAt(0).ColumnList != null && tableListResponse.ElementAt(0).ColumnList.Count > 0);
- // look for the table we created
+ // Look for the table we created
Assert.True(tableListResponse.Any(table => table.Name.Equals(commonData.TableName)));
// Get the table list in the db with only basic info
@@ -90,17 +93,17 @@ public void GetCatalogItemsTest()
Assert.Equal(commonData.TableName, tableGetResponse.Name);
- // Get the TVF list
+ // Get the tvf list
var tvfListResponse = clientToUse.Catalog.ListTableValuedFunctions(
commonData.SecondDataLakeAnalyticsAccountName,
commonData.DatabaseName, CommonTestFixture.SchemaName);
Assert.True(tvfListResponse.Count() >= 1);
- // look for the tvf we created
+ // Look for the tvf we created
Assert.True(tvfListResponse.Any(tvf => tvf.Name.Equals(commonData.TvfName)));
- // get tvf list in the database
+ // Get tvf list in the database
tvfListResponse = clientToUse.Catalog.ListTableValuedFunctionsByDatabase(
commonData.SecondDataLakeAnalyticsAccountName,
commonData.DatabaseName);
@@ -110,31 +113,31 @@ public void GetCatalogItemsTest()
// look for the tvf we created
Assert.True(tvfListResponse.Any(tvf => tvf.Name.Equals(commonData.TvfName)));
- // Get the specific TVF as well
+ // Get the specific tvf as well
var tvfGetResponse = clientToUse.Catalog.GetTableValuedFunction(
commonData.SecondDataLakeAnalyticsAccountName,
commonData.DatabaseName, CommonTestFixture.SchemaName, commonData.TvfName);
Assert.Equal(commonData.TvfName, tvfGetResponse.Name);
- // Get the View list
+ // Get the view list
var viewListResponse = clientToUse.Catalog.ListViews(
commonData.SecondDataLakeAnalyticsAccountName,
commonData.DatabaseName, CommonTestFixture.SchemaName);
Assert.True(viewListResponse.Count() >= 1);
- // look for the view we created
+ // Look for the view we created
Assert.True(viewListResponse.Any(view => view.Name.Equals(commonData.ViewName)));
- // get the view list from just the database
+ // Get the view list from just the database
viewListResponse = clientToUse.Catalog.ListViewsByDatabase(
commonData.SecondDataLakeAnalyticsAccountName,
commonData.DatabaseName);
Assert.True(viewListResponse.Count() >= 1);
- // look for the view we created
+ // Look for the view we created
Assert.True(viewListResponse.Any(view => view.Name.Equals(commonData.ViewName)));
// Get the specific view as well
@@ -144,14 +147,14 @@ public void GetCatalogItemsTest()
Assert.Equal(commonData.ViewName, viewGetResponse.Name);
- // Get the Procedure list
+ // Get the procedure list
var procListResponse = clientToUse.Catalog.ListProcedures(
commonData.SecondDataLakeAnalyticsAccountName,
commonData.DatabaseName, CommonTestFixture.SchemaName);
Assert.True(procListResponse.Count() >= 1);
- // look for the procedure we created
+ // Look for the procedure we created
Assert.True(procListResponse.Any(proc => proc.Name.Equals(commonData.ProcName)));
// Get the specific procedure as well
@@ -161,7 +164,7 @@ public void GetCatalogItemsTest()
Assert.Equal(commonData.ProcName, procGetResponse.Name);
- // Get the Partition list
+ // Get the partition list
var partitionList = clientToUse.Catalog.ListTablePartitions(
commonData.SecondDataLakeAnalyticsAccountName,
commonData.DatabaseName, CommonTestFixture.SchemaName, commonData.TableName);
@@ -182,7 +185,6 @@ public void GetCatalogItemsTest()
commonData.SecondDataLakeAnalyticsAccountName,
commonData.DatabaseName, CommonTestFixture.SchemaName);
-
Assert.NotNull(typeGetResponse);
Assert.NotEmpty(typeGetResponse);
@@ -191,10 +193,65 @@ public void GetCatalogItemsTest()
commonData.SecondDataLakeAnalyticsAccountName,
commonData.DatabaseName, CommonTestFixture.SchemaName, new Microsoft.Rest.Azure.OData.ODataQuery{Filter = "isComplexType eq false"});
-
Assert.NotNull(typeGetResponse);
Assert.NotEmpty(typeGetResponse);
Assert.False(typeGetResponse.Any(type => type.IsComplexType.Value));
+
+ // Prepare to grant/revoke ACLs
+ var principalId = TestUtilities.GenerateGuid();
+ var grantAclParam = new AclCreateOrUpdateParameters
+ {
+ AceType = AclType.User,
+ PrincipalId = principalId,
+ Permission = PermissionType.Use
+ };
+ var revokeAclParam = new AclDeleteParameters
+ {
+ AceType = AclType.User,
+ PrincipalId = principalId
+ };
+
+ // Get the initial number of ACLs by db
+ var aclByDbListResponse = clientToUse.Catalog.ListAclsByDatabase(commonData.SecondDataLakeAnalyticsAccountName, commonData.DatabaseName);
+ var aclByDbCount = aclByDbListResponse.Value.Count();
+
+ // Get the initial number of ACLs by catalog
+ var aclListResponse = clientToUse.Catalog.ListAcls(commonData.SecondDataLakeAnalyticsAccountName);
+ var aclCount = aclListResponse.Value.Count();
+
+ // Grant ACL to the db
+ clientToUse.Catalog.GrantAclToDatabase(commonData.SecondDataLakeAnalyticsAccountName, commonData.DatabaseName, grantAclParam);
+ aclByDbListResponse = clientToUse.Catalog.ListAclsByDatabase(commonData.SecondDataLakeAnalyticsAccountName, commonData.DatabaseName);
+ var acl = aclByDbListResponse.Value.Last();
+
+ // Confirm the ACL's information
+ Assert.Equal(aclByDbCount + 1, aclByDbListResponse.Value.Count());
+ Assert.Equal(AclType.User, acl.AceType);
+ Assert.Equal(principalId, acl.PrincipalId);
+ Assert.Equal(PermissionType.Use, acl.Permission);
+
+ // Revoke ACL from the db
+ clientToUse.Catalog.RevokeAclFromDatabase(commonData.SecondDataLakeAnalyticsAccountName, commonData.DatabaseName, revokeAclParam);
+ aclByDbListResponse = clientToUse.Catalog.ListAclsByDatabase(commonData.SecondDataLakeAnalyticsAccountName, commonData.DatabaseName);
+
+ Assert.Equal(aclByDbCount, aclByDbListResponse.Value.Count());
+
+ // Grant ACL to the catalog
+ clientToUse.Catalog.GrantAcl(commonData.SecondDataLakeAnalyticsAccountName, grantAclParam);
+ aclListResponse = clientToUse.Catalog.ListAcls(commonData.SecondDataLakeAnalyticsAccountName);
+ acl = aclListResponse.Value.Last();
+
+ // Confirm the ACL's information
+ Assert.Equal(aclCount + 1, aclListResponse.Value.Count());
+ Assert.Equal(AclType.User, acl.AceType);
+ Assert.Equal(principalId, acl.PrincipalId);
+ Assert.Equal(PermissionType.Use, acl.Permission);
+
+ // Revoke ACL from the catalog
+ clientToUse.Catalog.RevokeAcl(commonData.SecondDataLakeAnalyticsAccountName, revokeAclParam);
+ aclListResponse = clientToUse.Catalog.ListAcls(commonData.SecondDataLakeAnalyticsAccountName);
+
+ Assert.Equal(aclCount, aclListResponse.Value.Count());
}
}
}
@@ -208,12 +265,15 @@ public void CredentialCRUDTest()
commonData.HostUrl =
commonData.DataLakeAnalyticsManagementHelper.TryCreateDataLakeAnalyticsAccount(commonData.ResourceGroupName,
commonData.Location, commonData.DataLakeStoreAccountName, commonData.SecondDataLakeAnalyticsAccountName);
-
+
+ // Wait 5 minutes for the account setup
+ TestUtilities.Wait(300000);
+
commonData.DataLakeAnalyticsManagementHelper.CreateCatalog(commonData.ResourceGroupName,
commonData.SecondDataLakeAnalyticsAccountName, commonData.DatabaseName, commonData.TableName, commonData.TvfName, commonData.ViewName, commonData.ProcName);
using (var clientToUse = commonData.GetDataLakeAnalyticsCatalogManagementClient(context))
{
- // create the credential
+ // Create the credential
clientToUse.Catalog.CreateCredential(
commonData.SecondDataLakeAnalyticsAccountName,
commonData.DatabaseName, commonData.SecretName,
@@ -236,7 +296,7 @@ public void CredentialCRUDTest()
UserId = TestUtilities.GenerateGuid("fakeUserId02").ToString()
}));
- // create another credential
+ // Create another credential
var secondSecretName = commonData.SecretName + "dup";
clientToUse.Catalog.CreateCredential(
commonData.SecondDataLakeAnalyticsAccountName,
@@ -260,10 +320,11 @@ public void CredentialCRUDTest()
var credListResponse = clientToUse.Catalog.ListCredentials(
commonData.SecondDataLakeAnalyticsAccountName,
commonData.DatabaseName);
+
Assert.True(credListResponse.Count() >= 1);
- // look for the credential we created
- Assert.True(credListResponse.Any(cred => cred.Name.Equals(commonData.SecretName)));
+ // Look for the credential we created
+ Assert.True(credListResponse.Any(cred => cred.Name.Equals(commonData.SecretName)));
// Get the specific credential as well
var credGetResponse = clientToUse.Catalog.GetCredential(
@@ -307,87 +368,5 @@ public void CredentialCRUDTest()
}
}
}
-
- [Fact]
- public void SecretCRUDTest()
- {
- // NOTE: This is deprecated and will be removed in a future release
- using (var context = MockContext.Start(this.GetType().FullName))
- {
- commonData = new CommonTestFixture(context);
- commonData.HostUrl =
- commonData.DataLakeAnalyticsManagementHelper.TryCreateDataLakeAnalyticsAccount(commonData.ResourceGroupName,
- commonData.Location, commonData.DataLakeStoreAccountName, commonData.SecondDataLakeAnalyticsAccountName);
-
- commonData.DataLakeAnalyticsManagementHelper.CreateCatalog(commonData.ResourceGroupName,
- commonData.SecondDataLakeAnalyticsAccountName, commonData.DatabaseName, commonData.TableName, commonData.TvfName, commonData.ViewName, commonData.ProcName);
- using (var clientToUse = commonData.GetDataLakeAnalyticsCatalogManagementClient(context))
- {
- using (var jobClient = commonData.GetDataLakeAnalyticsJobManagementClient(context))
- {
- // create the secret
- clientToUse.Catalog.CreateSecret(
- commonData.SecondDataLakeAnalyticsAccountName,
- commonData.DatabaseName, commonData.SecretName,
- new DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters
- {
- Password = commonData.SecretPwd,
- Uri = "https://adlasecrettest.contoso.com:443"
- });
-
- // Attempt to create the secret again, which should throw
- Assert.Throws(
- () => clientToUse.Catalog.CreateSecret(
- commonData.SecondDataLakeAnalyticsAccountName,
- commonData.DatabaseName, commonData.SecretName,
- new DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters
- {
- Password = commonData.SecretPwd,
- Uri = "https://adlasecrettest.contoso.com:443"
- }));
-
- // create another secret
- var secondSecretName = commonData.SecretName + "dup";
- clientToUse.Catalog.CreateSecret(
- commonData.SecondDataLakeAnalyticsAccountName,
- commonData.DatabaseName, secondSecretName,
- new DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters
- {
- Password = commonData.SecretPwd,
- Uri = "https://adlasecrettest.contoso.com:443"
- });
-
- // Get the secret and ensure the response contains a date.
- var secretGetResponse = clientToUse.Catalog.GetSecret(
- commonData.SecondDataLakeAnalyticsAccountName,
- commonData.DatabaseName, commonData.SecretName);
-
- Assert.NotNull(secretGetResponse);
- Assert.NotNull(secretGetResponse.CreationTime);
-
- // Delete the secret
- clientToUse.Catalog.DeleteSecret(
- commonData.SecondDataLakeAnalyticsAccountName,
- commonData.DatabaseName, commonData.SecretName);
-
- // Try to get the secret which should throw
- Assert.Throws(() => clientToUse.Catalog.GetSecret(
- commonData.SecondDataLakeAnalyticsAccountName,
- commonData.DatabaseName, commonData.SecretName));
-
- // Delete all secrets
- clientToUse.Catalog.DeleteAllSecrets(
- commonData.SecondDataLakeAnalyticsAccountName,
- commonData.DatabaseName);
-
- // Try to get the second secret, which should throw.
- // Try to get the secret which should throw
- Assert.Throws(() => clientToUse.Catalog.GetSecret(
- commonData.SecondDataLakeAnalyticsAccountName,
- commonData.DatabaseName, secondSecretName));
- }
- }
- }
- }
}
}
diff --git a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs
index 051fef3af2b1..91f06a68384f 100644
--- a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs
+++ b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs
@@ -19,7 +19,7 @@ public class JobOperationTests : TestBase
private CommonTestFixture commonData;
[Fact]
- public void SubmitGetListCancelTest()
+ public void USqlSubmitGetListCancelTest()
{
using (var context = MockContext.Start(this.GetType().FullName))
{
@@ -27,13 +27,16 @@ public void SubmitGetListCancelTest()
commonData.HostUrl =
commonData.DataLakeAnalyticsManagementHelper.TryCreateDataLakeAnalyticsAccount(commonData.ResourceGroupName,
commonData.Location, commonData.DataLakeStoreAccountName, commonData.SecondDataLakeAnalyticsAccountName);
-
+
+ // Wait 5 minutes for the account setup
+ TestUtilities.Wait(300000);
+
var clientToUse = this.GetDataLakeAnalyticsJobManagementClient(context);
Guid jobId = TestUtilities.GenerateGuid();
- var secondId = TestUtilities.GenerateGuid();
+ Guid secondId = TestUtilities.GenerateGuid();
- // job relationship information
+ // Job relationship information
var recurrenceId = TestUtilities.GenerateGuid();
var recurrenceName = TestUtilities.GenerateName("recurrence");
@@ -43,14 +46,16 @@ public void SubmitGetListCancelTest()
var pipelineId = TestUtilities.GenerateGuid();
var pipelineName = TestUtilities.GenerateName("jobPipeline");
var pipelineUri = string.Format("https://{0}.contoso.com/myJob", TestUtilities.GenerateName("pipelineuri"));
- // Submit a job to the account
+
+ // Submit a usql job to the account
var jobToSubmit = new CreateJobParameters
{
Name = "azure sdk data lake analytics job",
- DegreeOfParallelism = 2,
Type = JobType.USql,
+ DegreeOfParallelism = 2,
Properties = new CreateUSqlJobProperties
{
+ RuntimeVersion = "default",
Script = "DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;"
},
Related = new JobRelationshipProperties
@@ -64,41 +69,44 @@ public void SubmitGetListCancelTest()
}
};
- // check to make sure the job doesn't already exist
+ // Check to make sure the usql job doesn't already exist
Assert.False(clientToUse.Job.Exists(commonData.SecondDataLakeAnalyticsAccountName, jobId));
+
+ // Submit the usql job
var jobCreateResponse = clientToUse.Job.Create(commonData.SecondDataLakeAnalyticsAccountName, jobId, jobToSubmit);
Assert.NotNull(jobCreateResponse);
- // Cancel the job
- clientToUse.Job.Cancel(commonData.SecondDataLakeAnalyticsAccountName, jobCreateResponse.JobId.GetValueOrDefault());
-
- // check to make sure the job does exist now
+ // Check to make sure the usql job does exist now
Assert.True(clientToUse.Job.Exists(commonData.SecondDataLakeAnalyticsAccountName, jobId));
- // Get the job and ensure that it says it was cancelled.
+ // Cancel the usql job
+ clientToUse.Job.Cancel(commonData.SecondDataLakeAnalyticsAccountName, jobCreateResponse.JobId.GetValueOrDefault());
+
+ // Get the usql job and ensure that it says it was cancelled
var getCancelledJobResponse = clientToUse.Job.Get(commonData.SecondDataLakeAnalyticsAccountName, jobCreateResponse.JobId.GetValueOrDefault());
Assert.Equal(JobResult.Cancelled, getCancelledJobResponse.Result);
Assert.NotNull(getCancelledJobResponse.ErrorMessage);
Assert.NotEmpty(getCancelledJobResponse.ErrorMessage);
- // Resubmit the job
- // first update the runId to a new run
+ // Resubmit the usql job
+ // First update the runId to a new run
jobToSubmit.Related.RunId = runId02;
jobCreateResponse = clientToUse.Job.Create(commonData.SecondDataLakeAnalyticsAccountName, secondId, jobToSubmit);
Assert.NotNull(jobCreateResponse);
- // Poll the job until it finishes
+ // Poll the usql job until it finishes
var getJobResponse = clientToUse.Job.Get(commonData.SecondDataLakeAnalyticsAccountName, jobCreateResponse.JobId.GetValueOrDefault());
+
Assert.NotNull(getJobResponse);
int maxWaitInSeconds = 180; // 3 minutes should be long enough
int curWaitInSeconds = 0;
while (getJobResponse.State != JobState.Ended && curWaitInSeconds < maxWaitInSeconds)
{
- // wait 5 seconds before polling again
+ // Wait 5 seconds before polling again
TestUtilities.Wait(5000);
curWaitInSeconds += 5;
getJobResponse = clientToUse.Job.Get(commonData.SecondDataLakeAnalyticsAccountName, jobCreateResponse.JobId.GetValueOrDefault());
@@ -107,13 +115,13 @@ public void SubmitGetListCancelTest()
Assert.True(curWaitInSeconds <= maxWaitInSeconds);
- // Verify the job completes successfully
+ // Verify the usql job completes successfully
Assert.True(
getJobResponse.State == JobState.Ended && getJobResponse.Result == JobResult.Succeeded,
string.Format("Job: {0} did not return success. Current job state: {1}. Actual result: {2}. Error (if any): {3}",
getJobResponse.JobId, getJobResponse.State, getJobResponse.Result, getJobResponse.ErrorMessage));
- // validate job relationship info
+ // Validate usql job relationship info
Assert.Equal(runId02, getJobResponse.Related.RunId);
Assert.Equal(pipelineId, getJobResponse.Related.PipelineId);
Assert.Equal(pipelineName, getJobResponse.Related.PipelineName);
@@ -121,32 +129,62 @@ public void SubmitGetListCancelTest()
Assert.Equal(recurrenceId, getJobResponse.Related.RecurrenceId);
Assert.Equal(pipelineUri, getJobResponse.Related.PipelineUri);
+ // Get the list of usql jobs and check that the submitted job exists
var listJobResponse = clientToUse.Job.List(commonData.SecondDataLakeAnalyticsAccountName, null);
- Assert.NotNull(listJobResponse);
+ Assert.NotNull(listJobResponse);
Assert.True(listJobResponse.Any(job => job.JobId == getJobResponse.JobId));
- // validate job relationship retrieval (get/list pipeline and get/list recurrence)
+ // Validate usql job relationship retrieval (get/list pipeline and get/list recurrence)
var getPipeline = clientToUse.Pipeline.Get(commonData.SecondDataLakeAnalyticsAccountName, pipelineId);
+
Assert.Equal(pipelineId, getPipeline.PipelineId);
Assert.Equal(pipelineName, getPipeline.PipelineName);
Assert.Equal(pipelineUri, getPipeline.PipelineUri);
Assert.True(getPipeline.Runs.Count() >= 2);
var listPipeline = clientToUse.Pipeline.List(commonData.SecondDataLakeAnalyticsAccountName);
+
Assert.Equal(1, listPipeline.Count());
Assert.True(listPipeline.Any(pipeline => pipeline.PipelineId == pipelineId));
- // recurrence get/list
+ // Recurrence get/list
var getRecurrence = clientToUse.Recurrence.Get(commonData.SecondDataLakeAnalyticsAccountName, recurrenceId);
+
Assert.Equal(recurrenceId, getRecurrence.RecurrenceId);
Assert.Equal(recurrenceName, getRecurrence.RecurrenceName);
-
+
var listRecurrence = clientToUse.Recurrence.List(commonData.SecondDataLakeAnalyticsAccountName);
+
Assert.Equal(1, listRecurrence.Count());
Assert.True(listRecurrence.Any(recurrence => recurrence.RecurrenceId == recurrenceId));
- // Build a job to the account
+ // TODO: re-enable this after the next prod push
+ // List the usql jobs with only the jobId property filled
+ // listJobResponse = clientToUse.Job.List(commonData.SecondDataLakeAnalyticsAccountName, select: "jobId");
+
+ // Assert.NotNull(listJobResponse);
+ // Assert.True(listJobResponse.Any(job => job.JobId == getJobResponse.JobId));
+ }
+ }
+
+ [Fact]
+ public void USqlBuildTest()
+ {
+ using (var context = MockContext.Start(this.GetType().FullName))
+ {
+ commonData = new CommonTestFixture(context);
+ commonData.HostUrl =
+ commonData.DataLakeAnalyticsManagementHelper.TryCreateDataLakeAnalyticsAccount(commonData.ResourceGroupName,
+ commonData.Location, commonData.DataLakeStoreAccountName, commonData.SecondDataLakeAnalyticsAccountName);
+
+ // Wait 5 minutes for the account setup
+ TestUtilities.Wait(300000);
+
+ var clientToUse = this.GetDataLakeAnalyticsJobManagementClient(context);
+
+ // Compile a usql job, which requires a jobId in the job object
+ // Submit a usql job to the account
var jobToBuild = new BuildJobParameters
{
Name = "azure sdk data lake analytics job",
@@ -157,15 +195,16 @@ public void SubmitGetListCancelTest()
}
};
- // Just compile the job, which requires a jobId in the job object
+ // Just compile the usql job, which requires a jobId in the job object
var compileResponse = clientToUse.Job.Build(commonData.SecondDataLakeAnalyticsAccountName, jobToBuild);
+
Assert.NotNull(compileResponse);
- // now compile a broken job and verify diagnostics report an error
+ // Now compile a broken usql job and verify diagnostics report an error
jobToBuild.Properties.Script = "DROP DATABASE IF EXIST FOO; CREATE DATABASE FOO;";
compileResponse = clientToUse.Job.Build(commonData.SecondDataLakeAnalyticsAccountName, jobToBuild);
- Assert.NotNull(compileResponse);
+ Assert.NotNull(compileResponse);
Assert.Equal(1, ((USqlJobProperties)compileResponse.Properties).Diagnostics.Count);
Assert.Equal(SeverityTypes.Error, ((USqlJobProperties)compileResponse.Properties).Diagnostics[0].Severity);
Assert.Equal(18, ((USqlJobProperties)compileResponse.Properties).Diagnostics[0].ColumnNumber);
@@ -173,13 +212,6 @@ public void SubmitGetListCancelTest()
Assert.Equal(17, ((USqlJobProperties)compileResponse.Properties).Diagnostics[0].Start);
Assert.Equal(1, ((USqlJobProperties)compileResponse.Properties).Diagnostics[0].LineNumber);
Assert.Contains("E_CSC_USER_SYNTAXERROR", ((USqlJobProperties)compileResponse.Properties).Diagnostics[0].Message);
-
- // TODO: re-enable this when the server side is fixed
- // list the jobs both with a hand crafted query string and using the parameters
- // listJobResponse = clientToUse.Job.List(commonData.SecondDataLakeAnalyticsAccountName, select: "jobId" );
- // Assert.NotNull(listJobResponse);
-
- // Assert.True(listJobResponse.Any(job => job.JobId == getJobResponse.JobId));
}
}
}
diff --git a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json
index 5800ad2c9261..2f379ef4e536 100644
--- a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json
+++ b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json
@@ -1,24 +1,27 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fcc9c6ea-30c5-4228-9740-a16673b4ae9b"
+ "488fb441-2d67-4574-850a-459124e6aa53"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "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 \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "1557"
+ ],
"Content-Type": [
"application/json; charset=utf-8"
],
@@ -29,28 +32,25 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:47:39 GMT"
+ "Fri, 22 Dec 2017 19:52:48 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-request-id": [
- "80aef122-bb9c-4bfe-997c-d9eef2fe87be"
+ "db89db78-9310-4f3a-8ad4-01f3a2b43591"
],
"x-ms-correlation-request-id": [
- "80aef122-bb9c-4bfe-997c-d9eef2fe87be"
+ "db89db78-9310-4f3a-8ad4-01f3a2b43591"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T204740Z:80aef122-bb9c-4bfe-997c-d9eef2fe87be"
+ "WESTUS2:20171222T195249Z:db89db78-9310-4f3a-8ad4-01f3a2b43591"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -59,24 +59,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "edc4a483-dcb1-4692-92f3-c665c4dbf4dd"
+ "0643cd16-08b2-419a-8d14-85f72782cb83"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "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 \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "1557"
+ ],
"Content-Type": [
"application/json; charset=utf-8"
],
@@ -87,7 +90,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:47:39 GMT"
+ "Fri, 22 Dec 2017 19:52:48 GMT"
],
"Pragma": [
"no-cache"
@@ -96,16 +99,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14996"
],
"x-ms-request-id": [
- "99c80a7b-53f7-4393-9d66-988a6382e346"
+ "954064b3-bdcd-471c-8b28-c248aa4be559"
],
"x-ms-correlation-request-id": [
- "99c80a7b-53f7-4393-9d66-988a6382e346"
+ "954064b3-bdcd-471c-8b28-c248aa4be559"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T204740Z:99c80a7b-53f7-4393-9d66-988a6382e346"
+ "WESTUS2:20171222T195249Z:954064b3-bdcd-471c-8b28-c248aa4be559"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -114,24 +117,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2adf678d-f7b6-4adf-afbe-422c10da1c33"
+ "4128b6aa-c766-40f9-9a73-b7e264bdd101"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "7210"
+ ],
"Content-Type": [
"application/json; charset=utf-8"
],
@@ -142,28 +148,25 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:47:40 GMT"
+ "Fri, 22 Dec 2017 19:52:50 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-request-id": [
- "3a5ec300-3c39-4d15-811a-2e6a2282d897"
+ "be343342-2ced-4a89-a0d2-6c365119e6d6"
],
"x-ms-correlation-request-id": [
- "3a5ec300-3c39-4d15-811a-2e6a2282d897"
+ "be343342-2ced-4a89-a0d2-6c365119e6d6"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T204741Z:3a5ec300-3c39-4d15-811a-2e6a2282d897"
+ "WESTUS2:20171222T195250Z:be343342-2ced-4a89-a0d2-6c365119e6d6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -172,24 +175,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1b9ec904-626d-4d3c-b160-6a0949388c28"
+ "bba6a091-8d30-4afb-a331-6dbd774108c1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "7210"
+ ],
"Content-Type": [
"application/json; charset=utf-8"
],
@@ -200,7 +206,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:47:40 GMT"
+ "Fri, 22 Dec 2017 19:52:50 GMT"
],
"Pragma": [
"no-cache"
@@ -209,16 +215,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14995"
],
"x-ms-request-id": [
- "43ddd62a-00dd-4fe6-8548-040fa4e00faf"
+ "ee9041d6-9a01-47e0-b483-076920a014f1"
],
"x-ms-correlation-request-id": [
- "43ddd62a-00dd-4fe6-8548-040fa4e00faf"
+ "ee9041d6-9a01-47e0-b483-076920a014f1"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T204741Z:43ddd62a-00dd-4fe6-8548-040fa4e00faf"
+ "WESTUS2:20171222T195250Z:ee9041d6-9a01-47e0-b483-076920a014f1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -227,24 +233,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "44cae3bf-8ac0-4e6b-84ce-c344d9b45d60"
+ "3a2fc4bf-d0e5-4008-ab71-d016eed827b4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "1224"
+ ],
"Content-Type": [
"application/json; charset=utf-8"
],
@@ -255,28 +264,25 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:47:41 GMT"
+ "Fri, 22 Dec 2017 19:52:50 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1196"
],
"x-ms-request-id": [
- "1418d3f9-0853-4875-94fa-2c8fed3edcaf"
+ "64f28a67-2932-455a-88fb-eba1fcfe518c"
],
"x-ms-correlation-request-id": [
- "1418d3f9-0853-4875-94fa-2c8fed3edcaf"
+ "64f28a67-2932-455a-88fb-eba1fcfe518c"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T204742Z:1418d3f9-0853-4875-94fa-2c8fed3edcaf"
+ "WESTUS2:20171222T195251Z:64f28a67-2932-455a-88fb-eba1fcfe518c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -285,24 +291,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "590ddaee-fa3a-429f-9865-cdec10087b33"
+ "d41e63eb-250f-4f5f-88a1-d7a4a90db1f8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "1224"
+ ],
"Content-Type": [
"application/json; charset=utf-8"
],
@@ -313,7 +322,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:47:41 GMT"
+ "Fri, 22 Dec 2017 19:52:50 GMT"
],
"Pragma": [
"no-cache"
@@ -322,16 +331,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14994"
],
"x-ms-request-id": [
- "0841cef5-2986-4c5c-9d03-3659a32736a5"
+ "8e1aea73-d0dd-4c27-916b-d80683ece7e7"
],
"x-ms-correlation-request-id": [
- "0841cef5-2986-4c5c-9d03-3659a32736a5"
+ "8e1aea73-d0dd-4c27-916b-d80683ece7e7"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T204742Z:0841cef5-2986-4c5c-9d03-3659a32736a5"
+ "WESTUS2:20171222T195251Z:8e1aea73-d0dd-4c27-916b-d80683ece7e7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -340,23 +349,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11672?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTE2NzI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba19514?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTk1MTQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ecf53c1-6605-4f74-8354-745ea6aa6155"
+ "ef7ec337-1ae8-4160-ac87-eca1f971c417"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba11672' could not be found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba19514' could not be found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"102"
@@ -371,7 +380,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:47:41 GMT"
+ "Fri, 22 Dec 2017 19:52:50 GMT"
],
"Pragma": [
"no-cache"
@@ -380,16 +389,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14993"
],
"x-ms-request-id": [
- "37d7a9c2-8725-4109-901f-035fba884e38"
+ "695d063f-5c1d-4ddf-94f1-0c45127c2c2a"
],
"x-ms-correlation-request-id": [
- "37d7a9c2-8725-4109-901f-035fba884e38"
+ "695d063f-5c1d-4ddf-94f1-0c45127c2c2a"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T204742Z:37d7a9c2-8725-4109-901f-035fba884e38"
+ "WESTUS2:20171222T195251Z:695d063f-5c1d-4ddf-94f1-0c45127c2c2a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -398,24 +407,27 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11672?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTE2NzI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba19514?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTk1MTQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eb687203-9f93-4eb1-a5c7-ebc043f4254b"
+ "6c41c107-5044-42b6-af29-3b795a7217ea"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672\",\r\n \"name\": \"rgaba11672\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514\",\r\n \"name\": \"rgaba19514\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "174"
+ ],
"Content-Type": [
"application/json; charset=utf-8"
],
@@ -426,7 +438,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:47:43 GMT"
+ "Fri, 22 Dec 2017 19:52:52 GMT"
],
"Pragma": [
"no-cache"
@@ -435,16 +447,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14992"
],
"x-ms-request-id": [
- "2d1313a0-35ec-4b09-84c3-f56874c6b03c"
+ "6d0e94e3-9784-4311-9114-de5b86ca3c03"
],
"x-ms-correlation-request-id": [
- "2d1313a0-35ec-4b09-84c3-f56874c6b03c"
+ "6d0e94e3-9784-4311-9114-de5b86ca3c03"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T204743Z:2d1313a0-35ec-4b09-84c3-f56874c6b03c"
+ "WESTUS2:20171222T195252Z:6d0e94e3-9784-4311-9114-de5b86ca3c03"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -453,8 +465,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11672?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTE2NzI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba19514?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTk1MTQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
@@ -465,17 +477,17 @@
"31"
],
"x-ms-client-request-id": [
- "d0b6fd14-e037-4963-9fa4-72791a711a80"
+ "65189b5d-8ae9-4fdf-93d7-c1739b626ea2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672\",\r\n \"name\": \"rgaba11672\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514\",\r\n \"name\": \"rgaba19514\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"174"
@@ -490,22 +502,22 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:47:43 GMT"
+ "Fri, 22 Dec 2017 19:52:52 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1195"
],
"x-ms-request-id": [
- "ada9e1d8-eda2-4aa4-8c82-eb3693325dce"
+ "0331d256-1333-4a4f-9c6c-28be00db897e"
],
"x-ms-correlation-request-id": [
- "ada9e1d8-eda2-4aa4-8c82-eb3693325dce"
+ "0331d256-1333-4a4f-9c6c-28be00db897e"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T204743Z:ada9e1d8-eda2-4aa4-8c82-eb3693325dce"
+ "WESTUS2:20171222T195252Z:0331d256-1333-4a4f-9c6c-28be00db897e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -514,8 +526,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.Storage/storageAccounts/testazureblob19810?api-version=2017-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTk4MTA/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.Storage/storageAccounts/testazureblob13314?api-version=2017-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTMzMTQ/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
@@ -526,13 +538,13 @@
"99"
],
"x-ms-client-request-id": [
- "85cd0dbc-0030-421d-9e6a-5f6ca2ff9c63"
+ "30af2de8-a167-4685-8c59-c0f170fe0338"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.Storage.StorageManagementClient/6.4.0.0"
]
},
@@ -541,6 +553,9 @@
"Content-Length": [
"0"
],
+ "Content-Type": [
+ "application/json"
+ ],
"Expires": [
"-1"
],
@@ -548,13 +563,13 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:47:44 GMT"
+ "Fri, 22 Dec 2017 19:52:54 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/operations/22f58af8-9332-4800-a049-0dd96ee2be21?monitor=true&api-version=2017-06-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/51d61cf9-04cc-40c2-94d0-b1436a31f7df?monitor=true&api-version=2017-06-01"
],
"Retry-After": [
"17"
@@ -563,37 +578,99 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
"x-ms-request-id": [
- "f3809af6-2fce-47d6-9715-3048ab581de8"
+ "51d61cf9-04cc-40c2-94d0-b1436a31f7df"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
],
"x-ms-correlation-request-id": [
- "f3809af6-2fce-47d6-9715-3048ab581de8"
+ "48da4ae3-809c-450c-a526-0273e5974957"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T204745Z:f3809af6-2fce-47d6-9715-3048ab581de8"
+ "WESTUS2:20171222T195254Z:48da4ae3-809c-450c-a526-0273e5974957"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/51d61cf9-04cc-40c2-94d0-b1436a31f7df?monitor=true&api-version=2017-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvNTFkNjFjZjktMDRjYy00MGMyLTk0ZDAtYjE0MzZhMzFmN2RmP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE3LTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.Storage.StorageManagementClient/6.4.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:53:11 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/51d61cf9-04cc-40c2-94d0-b1436a31f7df?monitor=true&api-version=2017-06-01"
+ ],
+ "Retry-After": [
+ "17"
+ ],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-request-id": [
+ "587c2df9-f87f-4fbd-96c6-9b2a4784a79f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "505232f4-76fb-44b9-af6a-1820bb269258"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T195312Z:505232f4-76fb-44b9-af6a-1820bb269258"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/operations/22f58af8-9332-4800-a049-0dd96ee2be21?monitor=true&api-version=2017-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzIyZjU4YWY4LTkzMzItNDgwMC1hMDQ5LTBkZDk2ZWUyYmUyMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNy0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/locations/eastus2/asyncoperations/51d61cf9-04cc-40c2-94d0-b1436a31f7df?monitor=true&api-version=2017-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvNTFkNjFjZjktMDRjYy00MGMyLTk0ZDAtYjE0MzZhMzFmN2RmP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE3LTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.Storage.StorageManagementClient/6.4.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.Storage/storageAccounts/testazureblob19810\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"name\": \"testazureblob19810\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-06-09T20:47:44.9764639Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testazureblob19810.blob.core.windows.net/\",\r\n \"file\": \"https://testazureblob19810.file.core.windows.net/\",\r\n \"queue\": \"https://testazureblob19810.queue.core.windows.net/\",\r\n \"table\": \"https://testazureblob19810.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 \"supportsHttpsTrafficOnly\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.Storage/storageAccounts/testazureblob13314\",\r\n \"name\": \"testazureblob13314\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"trustedDirectories\": [\r\n \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n ],\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-22T19:52:54.6483794Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-22T19:52:54.6483794Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-12-22T19:52:54.6015362Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testazureblob13314.blob.core.windows.net/\",\r\n \"queue\": \"https://testazureblob13314.queue.core.windows.net/\",\r\n \"table\": \"https://testazureblob13314.table.core.windows.net/\",\r\n \"file\": \"https://testazureblob13314.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"unavailable\"\r\n }\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "1052"
+ ],
"Content-Type": [
"application/json"
],
@@ -604,14 +681,11 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:48:14 GMT"
+ "Fri, 22 Dec 2017 19:53:29 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"Server": [
"Microsoft-Azure-Storage-Resource-Provider/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -620,42 +694,45 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "8446031b-126d-4ab1-ac9d-96ffaeebff4f"
+ "d8142927-9ef1-492c-b41b-a038cd7e6c59"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14998"
],
"x-ms-correlation-request-id": [
- "8446031b-126d-4ab1-ac9d-96ffaeebff4f"
+ "3e819255-14f3-4994-a423-102e5a74f0d1"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T204815Z:8446031b-126d-4ab1-ac9d-96ffaeebff4f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "WESTUS2:20171222T195329Z:3e819255-14f3-4994-a423-102e5a74f0d1"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.Storage/storageAccounts/testazureblob19810/listKeys?api-version=2017-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTk4MTAvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.Storage/storageAccounts/testazureblob13314/listKeys?api-version=2017-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTMzMTQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "77b1d0c2-e107-467f-811c-0be96f525a0d"
+ "d82e85b2-8a6d-4fb6-895a-f10296780f23"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.Storage.StorageManagementClient/6.4.0.0"
]
},
- "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"bGJgpfKzBauuxoh6mnH0vPBFPXi72kKMX6TMKZzzXL2A+AAAzUT/GYo/ghd44h6JbNsAGNdqL1WFyhjYHE6Xjw==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"6qhDMZstp5L30pF9qSB5xLXQFllBEfNQ/DSg6IfqG+0gwoNrTyHTFW6YqLSfdODJxFSUKhPhg+CsVWX6MbZ+5w==\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"CKaJTTwQ/wxeP286k9S4YKoeLdiI9w5kQ7DOdVQUZablTPILv60tiy7QuYIgg/QYXQ2A4i/9IshiR9eS/LDF/w==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"OwvOMg+VcGlfciOxW5nS1qfN6WmvOgyW6qOlgJQN6yotV6bAjirXOkicuZz+RWJc4z+vQqj4KFe6VHE8rDVszw==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "288"
+ ],
"Content-Type": [
"application/json"
],
@@ -666,14 +743,11 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:48:15 GMT"
+ "Fri, 22 Dec 2017 19:53:29 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"Server": [
"Microsoft-Azure-Storage-Resource-Provider/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -682,42 +756,45 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "10ddd9d7-a5fc-4535-98e5-7ec14dfe134e"
+ "57338fa9-4dc4-445e-b185-bb487c8e2adc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "10ddd9d7-a5fc-4535-98e5-7ec14dfe134e"
+ "1711ea50-cd79-4ce6-97a4-7fbfe71b9729"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T204815Z:10ddd9d7-a5fc-4535-98e5-7ec14dfe134e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "WESTUS2:20171222T195330Z:1711ea50-cd79-4ce6-97a4-7fbfe71b9729"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.Storage/storageAccounts/testazureblob19810?api-version=2017-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTk4MTA/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.Storage/storageAccounts/testazureblob13314?api-version=2017-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTMzMTQ/YXBpLXZlcnNpb249MjAxNy0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "27c9cfb2-7cc6-41cc-852a-45cb06631caa"
+ "f872bba5-e5f4-4905-92b6-51cdc300a9ba"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.Storage.StorageManagementClient/6.4.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.Storage/storageAccounts/testazureblob19810\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"name\": \"testazureblob19810\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-06-09T20:47:44.9764639Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testazureblob19810.blob.core.windows.net/\",\r\n \"file\": \"https://testazureblob19810.file.core.windows.net/\",\r\n \"queue\": \"https://testazureblob19810.queue.core.windows.net/\",\r\n \"table\": \"https://testazureblob19810.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 \"supportsHttpsTrafficOnly\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.Storage/storageAccounts/testazureblob13314\",\r\n \"name\": \"testazureblob13314\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"trustedDirectories\": [\r\n \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n ],\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-22T19:52:54.6483794Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2017-12-22T19:52:54.6483794Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2017-12-22T19:52:54.6015362Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testazureblob13314.blob.core.windows.net/\",\r\n \"queue\": \"https://testazureblob13314.queue.core.windows.net/\",\r\n \"table\": \"https://testazureblob13314.table.core.windows.net/\",\r\n \"file\": \"https://testazureblob13314.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"unavailable\"\r\n }\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "1052"
+ ],
"Content-Type": [
"application/json"
],
@@ -728,14 +805,11 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:48:15 GMT"
+ "Fri, 22 Dec 2017 19:53:29 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"Server": [
"Microsoft-Azure-Storage-Resource-Provider/1.0",
"Microsoft-HTTPAPI/2.0"
@@ -744,41 +818,41 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "2fa0289c-790f-4b94-93aa-42e4bc8ce68e"
+ "647e91dc-e725-40c5-9e6a-1662c4741f6b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14997"
],
"x-ms-correlation-request-id": [
- "2fa0289c-790f-4b94-93aa-42e4bc8ce68e"
+ "df31cddf-dc7d-4051-83e6-c4b775d75a01"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T204815Z:2fa0289c-790f-4b94-93aa-42e4bc8ce68e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "WESTUS2:20171222T195330Z:df31cddf-dc7d-4051-83e6-c4b775d75a01"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake16020?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake16385?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2Mzg1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25b839f7-1847-4e83-96bf-c37c49b64c7e"
+ "88400cc3-ac46-4e36-8009-341602113bb3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake16020' under resource group 'rgaba11672' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake16385' under resource group 'rgaba19514' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"164"
@@ -793,7 +867,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:48:15 GMT"
+ "Fri, 22 Dec 2017 19:53:29 GMT"
],
"Pragma": [
"no-cache"
@@ -802,13 +876,13 @@
"gateway"
],
"x-ms-request-id": [
- "8770fd3c-fafc-460c-b511-05adba23f90b"
+ "b32d3cae-be5d-4f12-bb76-41c2455b120f"
],
"x-ms-correlation-request-id": [
- "8770fd3c-fafc-460c-b511-05adba23f90b"
+ "b32d3cae-be5d-4f12-bb76-41c2455b120f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204816Z:8770fd3c-fafc-460c-b511-05adba23f90b"
+ "WESTUS2:20171222T195330Z:b32d3cae-be5d-4f12-bb76-41c2455b120f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -817,18 +891,21 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake16020?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake16385?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2Mzg1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16020.azuredatalakestore.net\",\r\n \"accountId\": \"48b25527-918b-40e1-89e6-9f4688266b45\",\r\n \"creationTime\": \"2017-06-09T20:48:18.0759948Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:48:18.0759948Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake16020\",\r\n \"name\": \"testdatalake16020\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16385.azuredatalakestore.net\",\r\n \"accountId\": \"1cd32d26-a82e-47b4-a950-ed9c02fcf190\",\r\n \"creationTime\": \"2017-12-22T19:53:34.6086344Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:53:34.6086344Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake16385\",\r\n \"name\": \"testdatalake16385\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "839"
+ ],
"Content-Type": [
"application/json"
],
@@ -842,7 +919,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:48:48 GMT"
+ "Fri, 22 Dec 2017 19:54:05 GMT"
],
"Pragma": [
"no-cache"
@@ -854,7 +931,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "4b5f21f3-d7bf-4143-baa5-eb6f5f988fdb"
+ "971f65fd-1be7-481e-a451-220b16c01d30"
],
"X-Content-Type-Options": [
"nosniff"
@@ -866,13 +943,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14995"
],
"x-ms-correlation-request-id": [
- "a9fedc5a-c19e-4e38-91bd-6c0628009bd6"
+ "0818d6b4-33ab-4f43-8ad3-b3f47ed25204"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204849Z:a9fedc5a-c19e-4e38-91bd-6c0628009bd6"
+ "WESTUS2:20171222T195406Z:0818d6b4-33ab-4f43-8ad3-b3f47ed25204"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -881,24 +958,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake16020?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake16385?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2Mzg1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7aa65f0b-1852-47a3-a06c-b360e8e011ab"
+ "c56d7b2d-6495-4efe-b4f0-5f66a329b153"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16020.azuredatalakestore.net\",\r\n \"accountId\": \"48b25527-918b-40e1-89e6-9f4688266b45\",\r\n \"creationTime\": \"2017-06-09T20:48:18.0759948Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:48:18.0759948Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake16020\",\r\n \"name\": \"testdatalake16020\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16385.azuredatalakestore.net\",\r\n \"accountId\": \"1cd32d26-a82e-47b4-a950-ed9c02fcf190\",\r\n \"creationTime\": \"2017-12-22T19:53:34.6086344Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:53:34.6086344Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake16385\",\r\n \"name\": \"testdatalake16385\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "839"
+ ],
"Content-Type": [
"application/json"
],
@@ -912,7 +992,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:48:49 GMT"
+ "Fri, 22 Dec 2017 19:54:06 GMT"
],
"Pragma": [
"no-cache"
@@ -924,7 +1004,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "99782302-1406-4505-baa7-095e23276c48"
+ "d55d8cf5-4b09-4530-9381-f204496475c7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -936,13 +1016,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14989"
],
"x-ms-correlation-request-id": [
- "a8b6d184-793d-4a0e-81c8-adb398f86d31"
+ "c4e85cb7-7170-4e16-a95d-34920cb3aaec"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204849Z:a8b6d184-793d-4a0e-81c8-adb398f86d31"
+ "WESTUS2:20171222T195407Z:c4e85cb7-7170-4e16-a95d-34920cb3aaec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -951,8 +1031,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake16020?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake16385?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2Mzg1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
@@ -963,20 +1043,20 @@
"31"
],
"x-ms-client-request-id": [
- "c43d89f5-1d77-4204-9460-bd2835fa2662"
+ "e810019b-6ab0-4b2c-b4fa-405d7b76ef67"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"48b25527-918b-40e1-89e6-9f4688266b45\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake16020\",\r\n \"name\": \"testdatalake16020\",\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 \"accountId\": \"1cd32d26-a82e-47b4-a950-ed9c02fcf190\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake16385\",\r\n \"name\": \"testdatalake16385\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "421"
+ "365"
],
"Content-Type": [
"application/json"
@@ -991,13 +1071,13 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:48:17 GMT"
+ "Fri, 22 Dec 2017 19:53:33 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake16020/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake16385/operationresults/0?api-version=2016-11-01"
],
"Retry-After": [
"10"
@@ -1006,10 +1086,10 @@
"Microsoft-IIS/8.5"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/48b25527-918b-40e1-89e6-9f4688266b450?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1cd32d26-a82e-47b4-a950-ed9c02fcf1900?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "d7290015-4206-48d4-95dc-c3c4fcbed6f4"
+ "2d95efb7-658d-4410-870f-a6a2dcacab6c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1021,13 +1101,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1199"
],
"x-ms-correlation-request-id": [
- "8c35c406-6bdb-443f-a12e-aec3a8383dfb"
+ "5ce97aca-f05d-4558-b904-c075dc56f5e3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204818Z:8c35c406-6bdb-443f-a12e-aec3a8383dfb"
+ "WESTUS2:20171222T195333Z:5ce97aca-f05d-4558-b904-c075dc56f5e3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1036,18 +1116,21 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/48b25527-918b-40e1-89e6-9f4688266b450?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQ4YjI1NTI3LTkxOGItNDBlMS04OWU2LTlmNDY4ODI2NmI0NTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1cd32d26-a82e-47b4-a950-ed9c02fcf1900?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzFjZDMyZDI2LWE4MmUtNDdiNC1hOTUwLWVkOWMwMmZjZjE5MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
"Content-Type": [
"application/json"
],
@@ -1061,7 +1144,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:48:48 GMT"
+ "Fri, 22 Dec 2017 19:53:43 GMT"
],
"Pragma": [
"no-cache"
@@ -1073,7 +1156,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "78730df6-6d10-4f1e-8cca-f1bac3866fa3"
+ "489d86ce-1cb9-44d9-a290-a5c459b851f5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1085,13 +1168,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14994"
],
"x-ms-correlation-request-id": [
- "d54eae8b-a9f7-4be3-84ea-18563eafa8fe"
+ "f70c424e-9f4a-4fd8-acc8-b247e7ff9c15"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204848Z:d54eae8b-a9f7-4be3-84ea-18563eafa8fe"
+ "WESTUS2:20171222T195343Z:f70c424e-9f4a-4fd8-acc8-b247e7ff9c15"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1100,29 +1183,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake2611?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1cd32d26-a82e-47b4-a950-ed9c02fcf1900?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzFjZDMyZDI2LWE4MmUtNDdiNC1hOTUwLWVkOWMwMmZjZjE5MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "64adb8d1-2734-4f5f-af6d-34f05ae4b8c7"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake2611' under resource group 'rgaba11672' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "163"
+ "23"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -1130,43 +1207,64 @@
"Cache-Control": [
"no-cache"
],
+ "Connection": [
+ "close"
+ ],
"Date": [
- "Fri, 09 Jun 2017 20:48:49 GMT"
+ "Fri, 22 Dec 2017 19:53:54 GMT"
],
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
],
"x-ms-request-id": [
- "5bff6243-3b01-44ea-951d-d0f32b05df8a"
+ "c9c91a73-48ee-47ac-ad73-30bf97932bdd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14989"
],
"x-ms-correlation-request-id": [
- "5bff6243-3b01-44ea-951d-d0f32b05df8a"
+ "8b89de90-d23d-4007-89cf-36f65e0bbacd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204850Z:5bff6243-3b01-44ea-951d-d0f32b05df8a"
+ "WESTUS2:20171222T195354Z:8b89de90-d23d-4007-89cf-36f65e0bbacd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake2611?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1cd32d26-a82e-47b4-a950-ed9c02fcf1900?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzFjZDMyZDI2LWE4MmUtNDdiNC1hOTUwLWVkOWMwMmZjZjE5MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake2611.azuredatalakestore.net\",\r\n \"accountId\": \"b45e6005-6bf0-4004-8096-a7fc6107b512\",\r\n \"creationTime\": \"2017-06-09T20:48:52.2058951Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:48:52.2058951Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake2611\",\r\n \"name\": \"testdatalake2611\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
"Content-Type": [
"application/json"
],
@@ -1180,7 +1278,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:49:23 GMT"
+ "Fri, 22 Dec 2017 19:54:04 GMT"
],
"Pragma": [
"no-cache"
@@ -1192,7 +1290,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "2f8707aa-cb67-4090-927f-de2e11bd6a23"
+ "27a730c8-ff83-4bb3-8181-03d92d56c0d2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1204,13 +1302,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14995"
],
"x-ms-correlation-request-id": [
- "cd83c4d2-4726-46ac-88a2-e03c1bc1a221"
+ "7447dbd3-5a8b-4b31-9a6b-256e77283f37"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204923Z:cd83c4d2-4726-46ac-88a2-e03c1bc1a221"
+ "WESTUS2:20171222T195405Z:7447dbd3-5a8b-4b31-9a6b-256e77283f37"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1219,26 +1317,29 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake2611?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake26251?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MjUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "121d746e-e924-4e91-87c2-eeb6d72a392c"
+ "e30789f0-8a8b-4cbe-88bd-8a2fd2966a8e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake2611.azuredatalakestore.net\",\r\n \"accountId\": \"b45e6005-6bf0-4004-8096-a7fc6107b512\",\r\n \"creationTime\": \"2017-06-09T20:48:52.2058951Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:48:52.2058951Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake2611\",\r\n \"name\": \"testdatalake2611\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake26251' under resource group 'rgaba19514' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "164"
+ ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1246,75 +1347,45 @@
"Cache-Control": [
"no-cache"
],
- "Connection": [
- "close"
- ],
"Date": [
- "Fri, 09 Jun 2017 20:49:23 GMT"
+ "Fri, 22 Dec 2017 19:54:07 GMT"
],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
+ "x-ms-failure-cause": [
+ "gateway"
],
"x-ms-request-id": [
- "b05d50ad-c7c2-4f87-a9e0-9b8b227896d5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "1d497190-743e-4e40-9ac0-f833e9bfc433"
],
"x-ms-correlation-request-id": [
- "0966ba72-aa05-47f3-bbe3-a9c2f39230dc"
+ "1d497190-743e-4e40-9ac0-f833e9bfc433"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204923Z:0966ba72-aa05-47f3-bbe3-a9c2f39230dc"
+ "WESTUS2:20171222T195407Z:1d497190-743e-4e40-9ac0-f833e9bfc433"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake2611?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake26251?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MjUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
- "x-ms-client-request-id": [
- "98d64ef6-b244-4e7e-b4f9-1d4d51af847c"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"b45e6005-6bf0-4004-8096-a7fc6107b512\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake2611\",\r\n \"name\": \"testdatalake2611\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake26251.azuredatalakestore.net\",\r\n \"accountId\": \"9edc3d2a-0ded-443f-a857-b6ee0fb4a6b7\",\r\n \"creationTime\": \"2017-12-22T19:54:11.6952506Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:54:11.6952506Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake26251\",\r\n \"name\": \"testdatalake26251\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "419"
+ "839"
],
"Content-Type": [
"application/json"
@@ -1329,25 +1400,19 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:48:51 GMT"
+ "Fri, 22 Dec 2017 19:54:42 GMT"
],
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11672/providers/Microsoft.DataLakeStore/accounts/testdatalake2611/operationresults/0?api-version=2016-11-01"
- ],
- "Retry-After": [
- "10"
- ],
"Server": [
"Microsoft-IIS/8.5"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b45e6005-6bf0-4004-8096-a7fc6107b5120?api-version=2016-11-01&expanded=true"
+ "Vary": [
+ "Accept-Encoding"
],
"x-ms-request-id": [
- "bee6e7b3-2a8f-46ed-805a-990f3fca6877"
+ "a89ea3ba-ce9b-45a4-be7f-53f8886c3004"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1358,34 +1423,43 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
],
"x-ms-correlation-request-id": [
- "62b8031e-4a28-4fbc-a582-edfb64e18995"
+ "f481a414-146b-4589-b7e8-bba1ad8df2cf"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204852Z:62b8031e-4a28-4fbc-a582-edfb64e18995"
+ "WESTUS2:20171222T195442Z:f481a414-146b-4589-b7e8-bba1ad8df2cf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b45e6005-6bf0-4004-8096-a7fc6107b5120?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2I0NWU2MDA1LTZiZjAtNDAwNC04MDk2LWE3ZmM2MTA3YjUxMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake26251?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MjUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "79a58132-a12f-4828-87d9-66c374d62ebd"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake26251.azuredatalakestore.net\",\r\n \"accountId\": \"9edc3d2a-0ded-443f-a857-b6ee0fb4a6b7\",\r\n \"creationTime\": \"2017-12-22T19:54:11.6952506Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:54:11.6952506Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake26251\",\r\n \"name\": \"testdatalake26251\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "839"
+ ],
"Content-Type": [
"application/json"
],
@@ -1399,7 +1473,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:49:22 GMT"
+ "Fri, 22 Dec 2017 19:54:43 GMT"
],
"Pragma": [
"no-cache"
@@ -1411,7 +1485,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "c8809b29-73b0-4f66-8dc3-9a3f1553636b"
+ "fe8d63ed-67d4-414c-81e0-05ddd223a1a8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1423,13 +1497,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14994"
],
"x-ms-correlation-request-id": [
- "09b3a03d-9848-4d7d-bcbb-f7f3d764c46c"
+ "fe90d22f-3806-488e-ba46-0988acab97b6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204922Z:09b3a03d-9848-4d7d-bcbb-f7f3d764c46c"
+ "WESTUS2:20171222T195443Z:fe90d22f-3806-488e-ba46-0988acab97b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1438,29 +1512,35 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake26251?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MjUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "31"
+ ],
"x-ms-client-request-id": [
- "35a2b025-57b1-4fba-8b67-5dcc69e56962"
+ "9b32acba-ddf2-44f5-869f-73bc2153096f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba14171' under resource group 'rgaba11672' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"9edc3d2a-0ded-443f-a857-b6ee0fb4a6b7\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake26251\",\r\n \"name\": \"testdatalake26251\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "163"
+ "365"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -1468,43 +1548,70 @@
"Cache-Control": [
"no-cache"
],
+ "Connection": [
+ "close"
+ ],
"Date": [
- "Fri, 09 Jun 2017 20:49:23 GMT"
+ "Fri, 22 Dec 2017 19:54:09 GMT"
],
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba19514/providers/Microsoft.DataLakeStore/accounts/testdatalake26251/operationresults/0?api-version=2016-11-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/9edc3d2a-0ded-443f-a857-b6ee0fb4a6b70?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "61819e61-494c-4f44-b56a-87a759ad8bce"
+ "bc61046f-0cfb-471e-9acd-0a4a5776941f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "61819e61-494c-4f44-b56a-87a759ad8bce"
+ "c19aef02-95d0-4779-957c-c04ca00b3ed4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204924Z:61819e61-494c-4f44-b56a-87a759ad8bce"
+ "WESTUS2:20171222T195410Z:c19aef02-95d0-4779-957c-c04ca00b3ed4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
]
},
- "StatusCode": 404
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/9edc3d2a-0ded-443f-a857-b6ee0fb4a6b70?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzllZGMzZDJhLTBkZWQtNDQzZi1hODU3LWI2ZWUwZmI0YTZiNzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16020\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16020\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 250,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba14171.azuredatalakeanalytics.net\",\r\n \"accountId\": \"945197ef-f127-4757-bdbf-6b367af9606b\",\r\n \"creationTime\": \"2017-06-09T20:49:28.7959581Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:49:28.7959581Z\"\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/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171\",\r\n \"name\": \"testaba14171\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
"Content-Type": [
"application/json"
],
@@ -1518,7 +1625,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:49:57 GMT"
+ "Fri, 22 Dec 2017 19:54:20 GMT"
],
"Pragma": [
"no-cache"
@@ -1530,7 +1637,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "1d2db71b-01af-4c22-8ab7-15e53ef14999"
+ "dfdb3e0d-9923-41ce-a69b-f093b71bcc49"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1542,13 +1649,147 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14994"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b1c83bb-61b7-47c9-a5d1-221258d25975"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T195420Z:6b1c83bb-61b7-47c9-a5d1-221258d25975"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/9edc3d2a-0ded-443f-a857-b6ee0fb4a6b70?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzllZGMzZDJhLTBkZWQtNDQzZi1hODU3LWI2ZWUwZmI0YTZiNzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:54:31 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "f5f71e8e-5b83-4cdf-a68f-3ca7a318068a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b1dcac9-3bae-425c-aec4-393e2cc9c171"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T195431Z:7b1dcac9-3bae-425c-aec4-393e2cc9c171"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/9edc3d2a-0ded-443f-a857-b6ee0fb4a6b70?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzllZGMzZDJhLTBkZWQtNDQzZi1hODU3LWI2ZWUwZmI0YTZiNzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:54:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "d6a99331-92bf-4526-80c4-fad20a256da1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
],
"x-ms-correlation-request-id": [
- "89244e5a-43ee-4586-9d44-f16b404f318b"
+ "5437b396-3820-4390-84ba-69871e04f372"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204958Z:89244e5a-43ee-4586-9d44-f16b404f318b"
+ "WESTUS2:20171222T195442Z:5437b396-3820-4390-84ba-69871e04f372"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1557,24 +1798,76 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0498936e-3d5c-47ab-9a40-dae50e48f3be"
+ "3c4371c4-083d-4029-920c-418e0a4cf451"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba15188' under resource group 'rgaba19514' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "163"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:54:46 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "f29f4fa2-8863-4cf0-b988-e654dbd20f76"
+ ],
+ "x-ms-correlation-request-id": [
+ "f29f4fa2-8863-4cf0-b988-e654dbd20f76"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T195447Z:f29f4fa2-8863-4cf0-b988-e654dbd20f76"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16020\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16020\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 250,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba14171.azuredatalakeanalytics.net\",\r\n \"accountId\": \"945197ef-f127-4757-bdbf-6b367af9606b\",\r\n \"creationTime\": \"2017-06-09T20:49:28.7959581Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:49:28.7959581Z\"\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/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171\",\r\n \"name\": \"testaba14171\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16385\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16385\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15188.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7fc4c550-5357-4858-ac99-544be1fe6068\",\r\n \"creationTime\": \"2017-12-22T19:54:51.7730094Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:54:51.7730094Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188\",\r\n \"name\": \"testaba15188\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "1301"
+ ],
"Content-Type": [
"application/json"
],
@@ -1588,7 +1881,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:49:57 GMT"
+ "Fri, 22 Dec 2017 19:55:23 GMT"
],
"Pragma": [
"no-cache"
@@ -1600,7 +1893,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "f9eddc9d-283f-4c27-a843-dba5c4f52c6e"
+ "5c22ef5b-4985-461c-a7c3-cab53e4ac12b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1612,13 +1905,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14995"
],
"x-ms-correlation-request-id": [
- "5f1d7b16-97df-4aa1-bb61-d4089f8fef98"
+ "bcb85945-64c2-4c8d-aaa4-5171af94aaea"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204958Z:5f1d7b16-97df-4aa1-bb61-d4089f8fef98"
+ "WESTUS2:20171222T195524Z:bcb85945-64c2-4c8d-aaa4-5171af94aaea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1627,24 +1920,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "98448e7b-a684-4a33-83a0-30fc8e9b0a11"
+ "214a9c51-ef86-41f3-8525-e19cfbc33cd2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16020\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16020\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 250,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba14171.azuredatalakeanalytics.net\",\r\n \"accountId\": \"945197ef-f127-4757-bdbf-6b367af9606b\",\r\n \"creationTime\": \"2017-06-09T20:49:28.7959581Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:49:28.7959581Z\"\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/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171\",\r\n \"name\": \"testaba14171\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16385\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16385\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15188.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7fc4c550-5357-4858-ac99-544be1fe6068\",\r\n \"creationTime\": \"2017-12-22T19:54:51.7730094Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:54:51.7730094Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188\",\r\n \"name\": \"testaba15188\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "1301"
+ ],
"Content-Type": [
"application/json"
],
@@ -1658,7 +1954,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:49:58 GMT"
+ "Fri, 22 Dec 2017 19:55:24 GMT"
],
"Pragma": [
"no-cache"
@@ -1670,7 +1966,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "80da206b-263f-4e11-9b49-311fb2fc7e11"
+ "d96d3b65-7388-44d3-90db-a0ffb6798223"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1682,13 +1978,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14991"
],
"x-ms-correlation-request-id": [
- "c79cda45-7797-4308-a27c-3d35f650c3c1"
+ "fbe636fc-fbe9-4034-9f78-04c0f9ce9a11"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204958Z:c79cda45-7797-4308-a27c-3d35f650c3c1"
+ "WESTUS2:20171222T195524Z:fbe636fc-fbe9-4034-9f78-04c0f9ce9a11"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1697,24 +1993,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "148a1cb8-d2fd-496a-8fe4-753a730e331a"
+ "54db513e-990b-4b81-9c44-79c4fb185edc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16020\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16020\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 250,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba14171.azuredatalakeanalytics.net\",\r\n \"accountId\": \"945197ef-f127-4757-bdbf-6b367af9606b\",\r\n \"creationTime\": \"2017-06-09T20:49:28.7959581Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:50:01.2694395Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171\",\r\n \"name\": \"testaba14171\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16385\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16385\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15188.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7fc4c550-5357-4858-ac99-544be1fe6068\",\r\n \"creationTime\": \"2017-12-22T19:54:51.7730094Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:54:51.7730094Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188\",\r\n \"name\": \"testaba15188\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "1301"
+ ],
"Content-Type": [
"application/json"
],
@@ -1728,7 +2027,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:00 GMT"
+ "Fri, 22 Dec 2017 19:55:26 GMT"
],
"Pragma": [
"no-cache"
@@ -1740,7 +2039,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "0a0f9a02-da9d-45d1-b6ff-3b148831d02e"
+ "8759a096-2f89-41ce-8a3f-9aa9b01c4d3b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1755,10 +2054,10 @@
"14996"
],
"x-ms-correlation-request-id": [
- "64632f15-79d4-49e7-8efd-69a7da164c6d"
+ "891511bf-7d20-48fd-bf25-501160f6e079"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205001Z:64632f15-79d4-49e7-8efd-69a7da164c6d"
+ "WESTUS2:20171222T195526Z:891511bf-7d20-48fd-bf25-501160f6e079"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1767,24 +2066,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3ce8df89-a7fe-4299-81ac-5d9cc7cb3526"
+ "23e4b206-9751-4dae-92bb-31db62f6df82"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16020\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16020\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 250,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba14171.azuredatalakeanalytics.net\",\r\n \"accountId\": \"945197ef-f127-4757-bdbf-6b367af9606b\",\r\n \"creationTime\": \"2017-06-09T20:49:28.7959581Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:50:01.2694395Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171\",\r\n \"name\": \"testaba14171\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16385\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16385\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15188.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7fc4c550-5357-4858-ac99-544be1fe6068\",\r\n \"creationTime\": \"2017-12-22T19:54:51.7730094Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:55:27.5477287Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188\",\r\n \"name\": \"testaba15188\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "1297"
+ ],
"Content-Type": [
"application/json"
],
@@ -1798,7 +2100,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:00 GMT"
+ "Fri, 22 Dec 2017 19:55:29 GMT"
],
"Pragma": [
"no-cache"
@@ -1810,7 +2112,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "32c67eeb-e9c7-4da9-9933-fc2257f54026"
+ "ccb9f0ba-4895-4322-abea-accb13db6371"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1822,13 +2124,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14988"
],
"x-ms-correlation-request-id": [
- "71fc3c76-7aa2-4f26-ad43-8099f9a07bb1"
+ "cab3587f-6976-4b41-84fc-9c35253f6f62"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205001Z:71fc3c76-7aa2-4f26-ad43-8099f9a07bb1"
+ "WESTUS2:20171222T195529Z:cab3587f-6976-4b41-84fc-9c35253f6f62"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1837,32 +2139,26 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16020\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16020\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "378"
- ],
"x-ms-client-request-id": [
- "3f46f354-558a-405d-bfab-b651954a79af"
+ "8829fa1c-1d98-42e3-a856-d6e154cdc474"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16020\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16020\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"945197ef-f127-4757-bdbf-6b367af9606b\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\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/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171\",\r\n \"name\": \"testaba14171\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16385\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16385\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15188.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7fc4c550-5357-4858-ac99-544be1fe6068\",\r\n \"creationTime\": \"2017-12-22T19:54:51.7730094Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:55:27.5477287Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188\",\r\n \"name\": \"testaba15188\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "626"
+ "1297"
],
"Content-Type": [
"application/json"
@@ -1877,25 +2173,19 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:49:25 GMT"
+ "Fri, 22 Dec 2017 19:55:29 GMT"
],
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/operationresults/0?api-version=2016-11-01"
- ],
- "Retry-After": [
- "10"
- ],
"Server": [
"Microsoft-IIS/8.5"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/945197ef-f127-4757-bdbf-6b367af9606b0?api-version=2016-11-01&expanded=true"
+ "Vary": [
+ "Accept-Encoding"
],
"x-ms-request-id": [
- "a53e119f-8612-4186-a9e4-2e9491f87b19"
+ "5e2c9105-7fe3-49c3-8715-60f2ef8a3691"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1906,34 +2196,572 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
],
"x-ms-correlation-request-id": [
- "9cf5d3c4-e160-4c9b-8cf7-fedcc9fc1f6a"
+ "53f53536-aa9d-4a60-bc4b-53a0cc639830"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204926Z:9cf5d3c4-e160-4c9b-8cf7-fedcc9fc1f6a"
+ "WESTUS2:20171222T195530Z:53f53536-aa9d-4a60-bc4b-53a0cc639830"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/945197ef-f127-4757-bdbf-6b367af9606b0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy85NDUxOTdlZi1mMTI3LTQ3NTctYmRiZi02YjM2N2FmOTYwNmIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/checkNameAvailability?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"name\": \"testaba15188\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "81"
+ ],
+ "x-ms-client-request-id": [
+ "8ee8b253-a7b1-47b6-af0b-c4241210a2e7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:54:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "c56df49c-baf2-4343-ac9b-9b1a83501cf2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "a6445315-6e3b-45c3-bf68-f3674d0d8ca7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T195448Z:a6445315-6e3b-45c3-bf68-f3674d0d8ca7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/checkNameAvailability?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"name\": \"testaba15188\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "81"
+ ],
+ "x-ms-client-request-id": [
+ "cfa9509c-5ec7-4c07-a016-54aa2ff1b874"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"An account named 'testaba15188' already exists.\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:55:26 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "a66a0cd4-d1f3-4fe8-8454-04fe0993e149"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "988fea65-22ee-4f87-9640-050e1369dc1e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T195526Z:988fea65-22ee-4f87-9640-050e1369dc1e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16385\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16385\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "378"
+ ],
+ "x-ms-client-request-id": [
+ "84a34437-7e76-427b-8cd3-07774b8d6047"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16385\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16385\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"7fc4c550-5357-4858-ac99-544be1fe6068\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188\",\r\n \"name\": \"testaba15188\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "582"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:54:50 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/operationresults/0?api-version=2016-11-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/7fc4c550-5357-4858-ac99-544be1fe60680?api-version=2016-11-01&expanded=true"
+ ],
+ "x-ms-request-id": [
+ "23315ee1-855d-45b9-b46c-28c29cd67bfe"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "c10ab12f-7f7e-415a-9cc2-6431ec575b73"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T195450Z:c10ab12f-7f7e-415a-9cc2-6431ec575b73"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/7fc4c550-5357-4858-ac99-544be1fe60680?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83ZmM0YzU1MC01MzU3LTQ4NTgtYWM5OS01NDRiZTFmZTYwNjgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:55:01 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "4c913005-45a3-4e49-9526-4311b2bbbcd8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e18abb6-8418-49b2-833f-5f40c4bb9f45"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T195501Z:6e18abb6-8418-49b2-833f-5f40c4bb9f45"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/7fc4c550-5357-4858-ac99-544be1fe60680?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83ZmM0YzU1MC01MzU3LTQ4NTgtYWM5OS01NDRiZTFmZTYwNjgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:55:11 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "d2318827-c957-4ff2-9ad5-632c61c44555"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14990"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd82e26e-2d4c-4ff5-8a71-f691c7128d8a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T195512Z:dd82e26e-2d4c-4ff5-8a71-f691c7128d8a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/7fc4c550-5357-4858-ac99-544be1fe60680?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy83ZmM0YzU1MC01MzU3LTQ4NTgtYWM5OS01NDRiZTFmZTYwNjgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:55:22 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "c64a55a8-64e5-444b-a609-33a71b15b0f4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-correlation-request-id": [
+ "efbeaaf7-37da-4e66-9fea-b677ef2287d5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T195523Z:efbeaaf7-37da-4e66-9fea-b677ef2287d5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"properties\": {\r\n \"newTier\": \"Consumption\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "111"
+ ],
+ "x-ms-client-request-id": [
+ "7b022314-49fe-418e-8bba-61c082461159"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16385\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16385\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15188.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7fc4c550-5357-4858-ac99-544be1fe6068\",\r\n \"creationTime\": \"2017-12-22T19:54:51.7730094Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:55:27.5477287Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188\",\r\n \"name\": \"testaba15188\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1029"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:55:28 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "d8327f58-f990-4d79-84b7-e872c029cbd5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "fa2ef1ad-cee5-4eae-ba9e-3e188d39e07b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T195528Z:fa2ef1ad-cee5-4eae-ba9e-3e188d39e07b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188secondacct?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODhzZWNvbmRhY2N0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16385\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16385\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "290"
+ ],
+ "x-ms-client-request-id": [
+ "dc838049-b47e-474f-9aff-67d9c32faf9c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16385\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16385\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"0895023c-697e-46c8-95bf-99a4f9d7e05d\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188secondacct\",\r\n \"name\": \"testaba15188secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "537"
+ ],
"Content-Type": [
"application/json"
],
@@ -1947,19 +2775,25 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:49:57 GMT"
+ "Fri, 22 Dec 2017 19:55:31 GMT"
],
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188secondacct/operationresults/0?api-version=2016-11-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
"Server": [
"Microsoft-IIS/8.5"
],
- "Vary": [
- "Accept-Encoding"
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/0895023c-697e-46c8-95bf-99a4f9d7e05d0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "704dbdb5-677c-4e6f-9695-f0ea122349b6"
+ "0e2f1abb-398a-408f-9d3d-7459006deeff"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1970,46 +2804,37 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
],
"x-ms-correlation-request-id": [
- "07acf7ed-e1a7-41c6-bcb6-a4bc64662c9f"
+ "432dd682-63d3-4993-b73f-babf49df8ebe"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T204957Z:07acf7ed-e1a7-41c6-bcb6-a4bc64662c9f"
+ "WESTUS2:20171222T195532Z:432dd682-63d3-4993-b73f-babf49df8ebe"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"properties\": {\r\n \"newTier\": \"Consumption\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/0895023c-697e-46c8-95bf-99a4f9d7e05d0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8wODk1MDIzYy02OTdlLTQ2YzgtOTViZi05OWE0ZjlkN2UwNWQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "111"
- ],
- "x-ms-client-request-id": [
- "0d60abe5-2bf8-469c-a923-0f36ae172730"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16020\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16020\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 250,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba14171.azuredatalakeanalytics.net\",\r\n \"accountId\": \"945197ef-f127-4757-bdbf-6b367af9606b\",\r\n \"creationTime\": \"2017-06-09T20:49:28.7959581Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:50:01.2694395Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171\",\r\n \"name\": \"testaba14171\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
"Content-Type": [
"application/json"
],
@@ -2023,7 +2848,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:49:59 GMT"
+ "Fri, 22 Dec 2017 19:55:44 GMT"
],
"Pragma": [
"no-cache"
@@ -2035,7 +2860,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "08ad74fb-cca8-4df4-9d0c-dbd76547171f"
+ "2c1b9cbf-c0ee-4231-b448-0b39cf043f75"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2046,14 +2871,14 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
],
"x-ms-correlation-request-id": [
- "ee02484a-ed78-4e86-a630-27608b795dbd"
+ "69a53dfb-742d-4e6e-b3d4-eb5a75b7820d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205000Z:ee02484a-ed78-4e86-a630-27608b795dbd"
+ "WESTUS2:20171222T195544Z:69a53dfb-742d-4e6e-b3d4-eb5a75b7820d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2062,32 +2887,20 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171secondacct?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzFzZWNvbmRhY2N0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16020\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16020\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/0895023c-697e-46c8-95bf-99a4f9d7e05d0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8wODk1MDIzYy02OTdlLTQ2YzgtOTViZi05OWE0ZjlkN2UwNWQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "290"
- ],
- "x-ms-client-request-id": [
- "47a8904d-0691-4bdd-98af-e759906555b4"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16020\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16020\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"dd938fac-7b30-4355-9c3b-bb65266b160e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171secondacct\",\r\n \"name\": \"testaba14171secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "593"
+ "23"
],
"Content-Type": [
"application/json"
@@ -2102,25 +2915,19 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:03 GMT"
+ "Fri, 22 Dec 2017 19:55:54 GMT"
],
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171secondacct/operationresults/0?api-version=2016-11-01"
- ],
- "Retry-After": [
- "10"
- ],
"Server": [
"Microsoft-IIS/8.5"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/dd938fac-7b30-4355-9c3b-bb65266b160e0?api-version=2016-11-01&expanded=true"
+ "Vary": [
+ "Accept-Encoding"
],
"x-ms-request-id": [
- "f27f26a2-bb6f-491b-9ce5-e5c64a0f2132"
+ "fa288802-3ca6-48c7-970f-d6da889675cd"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2131,34 +2938,37 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
],
"x-ms-correlation-request-id": [
- "28ea9271-a14a-4e16-9829-989cfda51a19"
+ "549ddc85-d9b1-489b-8c2b-4f3cba6be956"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205003Z:28ea9271-a14a-4e16-9829-989cfda51a19"
+ "WESTUS2:20171222T195554Z:549ddc85-d9b1-489b-8c2b-4f3cba6be956"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/dd938fac-7b30-4355-9c3b-bb65266b160e0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9kZDkzOGZhYy03YjMwLTQzNTUtOWMzYi1iYjY1MjY2YjE2MGUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/0895023c-697e-46c8-95bf-99a4f9d7e05d0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8wODk1MDIzYy02OTdlLTQ2YzgtOTViZi05OWE0ZjlkN2UwNWQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
"Content-Type": [
"application/json"
],
@@ -2172,7 +2982,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:33 GMT"
+ "Fri, 22 Dec 2017 19:56:05 GMT"
],
"Pragma": [
"no-cache"
@@ -2184,7 +2994,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "880848b0-2c4f-4f3c-9667-11afbadaa44e"
+ "72194e89-9cf0-4c34-9416-951637001d00"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2196,13 +3006,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14993"
],
"x-ms-correlation-request-id": [
- "13bb837d-9802-4a89-99a8-69cf566fac43"
+ "cc73e0a6-295a-4a51-8514-9bf05064c0b0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205034Z:13bb837d-9802-4a89-99a8-69cf566fac43"
+ "WESTUS2:20171222T195605Z:cc73e0a6-295a-4a51-8514-9bf05064c0b0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2211,18 +3021,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171secondacct?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzFzZWNvbmRhY2N0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188secondacct?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODhzZWNvbmRhY2N0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16020\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16020\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 250,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba14171secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"dd938fac-7b30-4355-9c3b-bb65266b160e\",\r\n \"creationTime\": \"2017-06-09T20:50:05.9602919Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:50:05.9602919Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171secondacct\",\r\n \"name\": \"testaba14171secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16385\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16385\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15188secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"0895023c-697e-46c8-95bf-99a4f9d7e05d\",\r\n \"creationTime\": \"2017-12-22T19:55:34.3571399Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:55:34.3571399Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188secondacct\",\r\n \"name\": \"testaba15188secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "1280"
+ ],
"Content-Type": [
"application/json"
],
@@ -2236,7 +3049,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:34 GMT"
+ "Fri, 22 Dec 2017 19:56:06 GMT"
],
"Pragma": [
"no-cache"
@@ -2248,7 +3061,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "d4cc655b-7ff5-4e4c-867e-465fa1175558"
+ "7968fa28-8f0a-41f2-9099-a656622c02ea"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2260,13 +3073,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14991"
],
"x-ms-correlation-request-id": [
- "b9111646-2fe0-4d52-9632-782fde0b5bca"
+ "d0ba909b-376f-4ba6-bb40-b9c973536cd4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205034Z:b9111646-2fe0-4d52-9632-782fde0b5bca"
+ "WESTUS2:20171222T195606Z:d0ba909b-376f-4ba6-bb40-b9c973536cd4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2275,24 +3088,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2c0a4caf-7d2c-4744-ac4b-c80134304f22"
+ "6b1a0127-e469-4443-9005-dfc5c393ca4d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlapytest01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f8bd455f-c99a-46d7-adee-6ea937532e22\",\r\n \"creationTime\": \"2017-06-06T21:59:57.8426639Z\",\r\n \"lastModifiedTime\": \"2017-06-06T21:59:57.8426639Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/adlspytestrg01/providers/Microsoft.DataLakeAnalytics/accounts/adlapytest01\",\r\n \"name\": \"adlapytest01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba14171.azuredatalakeanalytics.net\",\r\n \"accountId\": \"945197ef-f127-4757-bdbf-6b367af9606b\",\r\n \"creationTime\": \"2017-06-09T20:49:28.7959581Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:50:01.2694395Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171\",\r\n \"name\": \"testaba14171\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba14171secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"dd938fac-7b30-4355-9c3b-bb65266b160e\",\r\n \"creationTime\": \"2017-06-09T20:50:05.9602919Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:50:05.9602919Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171secondacct\",\r\n \"name\": \"testaba14171secondacct\",\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\": \"begoldsmdla01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26aa3b77-01a7-486a-af33-fedb4ced8b8b\",\r\n \"creationTime\": \"2017-04-13T18:27:51.865156Z\",\r\n \"lastModifiedTime\": \"2017-04-13T18:27:51.865156Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/begoldsmadlsrg01/providers/Microsoft.DataLakeAnalytics/accounts/begoldsmdla01\",\r\n \"name\": \"begoldsmdla01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15188.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7fc4c550-5357-4858-ac99-544be1fe6068\",\r\n \"creationTime\": \"2017-12-22T19:54:51.7730094Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:55:27.5477287Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188\",\r\n \"name\": \"testaba15188\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15188secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"0895023c-697e-46c8-95bf-99a4f9d7e05d\",\r\n \"creationTime\": \"2017-12-22T19:55:34.3571399Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:55:34.3571399Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188secondacct\",\r\n \"name\": \"testaba15188secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "1599"
+ ],
"Content-Type": [
"application/json"
],
@@ -2306,7 +3122,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:34 GMT"
+ "Fri, 22 Dec 2017 19:56:06 GMT"
],
"Pragma": [
"no-cache"
@@ -2318,7 +3134,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "5cadbdc9-3959-44cb-a9ad-a5386497c53b"
+ "19869b43-a421-4074-a293-6f79fc58243f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2330,13 +3146,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14996"
],
"x-ms-correlation-request-id": [
- "5c3f56c1-ddfc-45c5-b9c3-2554bec799e1"
+ "e321d0f9-9110-4c07-9550-ca73ae56d88f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205035Z:5c3f56c1-ddfc-45c5-b9c3-2554bec799e1"
+ "WESTUS2:20171222T195607Z:e321d0f9-9110-4c07-9550-ca73ae56d88f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2345,24 +3161,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e61303d0-ef65-4cf4-9b1a-e8b7200add97"
+ "8f00106e-ffde-42b7-9c1b-baccd416a12d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba14171.azuredatalakeanalytics.net\",\r\n \"accountId\": \"945197ef-f127-4757-bdbf-6b367af9606b\",\r\n \"creationTime\": \"2017-06-09T20:49:28.7959581Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:50:01.2694395Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171\",\r\n \"name\": \"testaba14171\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba14171secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"dd938fac-7b30-4355-9c3b-bb65266b160e\",\r\n \"creationTime\": \"2017-06-09T20:50:05.9602919Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:50:05.9602919Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171secondacct\",\r\n \"name\": \"testaba14171secondacct\",\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\": \"testaba15188.azuredatalakeanalytics.net\",\r\n \"accountId\": \"7fc4c550-5357-4858-ac99-544be1fe6068\",\r\n \"creationTime\": \"2017-12-22T19:54:51.7730094Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:55:27.5477287Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188\",\r\n \"name\": \"testaba15188\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba15188secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"0895023c-697e-46c8-95bf-99a4f9d7e05d\",\r\n \"creationTime\": \"2017-12-22T19:55:34.3571399Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:55:34.3571399Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188secondacct\",\r\n \"name\": \"testaba15188secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "1082"
+ ],
"Content-Type": [
"application/json"
],
@@ -2376,7 +3195,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:35 GMT"
+ "Fri, 22 Dec 2017 19:56:07 GMT"
],
"Pragma": [
"no-cache"
@@ -2388,7 +3207,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "9a14e02a-e510-4423-8fdb-36bb4061fd0e"
+ "761e52f6-461a-4e14-837f-3fb06177bf78"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2400,13 +3219,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14991"
],
"x-ms-correlation-request-id": [
- "3d4c93d4-48f0-49a9-b84c-24cc56336de7"
+ "de90d716-da49-40d9-8a47-204512c1d2fc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205035Z:3d4c93d4-48f0-49a9-b84c-24cc56336de7"
+ "WESTUS2:20171222T195608Z:de90d716-da49-40d9-8a47-204512c1d2fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2415,20 +3234,20 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/DataLakeStoreAccounts/testdatalake2611?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzEvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI2MTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/DataLakeStoreAccounts/testdatalake26251?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODgvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI2MjUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0676c16e-9432-4d5a-b4a0-467c7dcef03e"
+ "e9f31250-d5fd-45b6-b3b0-0403487722b3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NestedResourceNotFound\",\r\n \"message\": \"Nested resource does not exist.\"\r\n }\r\n}",
@@ -2449,7 +3268,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:36 GMT"
+ "Fri, 22 Dec 2017 19:56:07 GMT"
],
"Pragma": [
"no-cache"
@@ -2458,7 +3277,7 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "2f87f269-f412-406c-9ac5-b7bcbb6d91a0"
+ "49be134b-fb95-415f-9ce8-edcaa7814ecd"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2470,13 +3289,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14994"
],
"x-ms-correlation-request-id": [
- "aac7b531-3de7-4f7a-bf35-71a0279fad7b"
+ "1ae7a5ad-10ce-4499-aeed-2eb0accbf064"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205036Z:aac7b531-3de7-4f7a-bf35-71a0279fad7b"
+ "WESTUS2:20171222T195608Z:1ae7a5ad-10ce-4499-aeed-2eb0accbf064"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2485,24 +3304,27 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/DataLakeStoreAccounts/testdatalake2611?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzEvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI2MTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/DataLakeStoreAccounts/testdatalake26251?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODgvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI2MjUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "31930e02-5205-4403-b045-e9e0e8a0cebb"
+ "f8d38491-5c6f-4423-a964-688bf330136e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/dataLakeStoreAccounts/testdatalake2611\",\r\n \"name\": \"testdatalake2611\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/dataLakeStoreAccounts/testdatalake26251\",\r\n \"name\": \"testdatalake26251\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "330"
+ ],
"Content-Type": [
"application/json"
],
@@ -2516,7 +3338,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:37 GMT"
+ "Fri, 22 Dec 2017 19:56:09 GMT"
],
"Pragma": [
"no-cache"
@@ -2528,7 +3350,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "088550ae-7322-4942-a958-c6a4586aa534"
+ "e4ce32ec-4c66-46ad-9084-9eda42eab55e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2540,13 +3362,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14990"
],
"x-ms-correlation-request-id": [
- "4348add0-4d67-44b5-b7fa-1e38f2ae789e"
+ "cc61f73a-1d1d-414f-8309-207816815b35"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205037Z:4348add0-4d67-44b5-b7fa-1e38f2ae789e"
+ "WESTUS2:20171222T195610Z:cc61f73a-1d1d-414f-8309-207816815b35"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2555,24 +3377,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/DataLakeStoreAccounts/testdatalake2611?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzEvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI2MTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/DataLakeStoreAccounts/testdatalake26251?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODgvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI2MjUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9d067fe1-b605-445e-b133-65edfc6dcb92"
+ "3533a090-6da1-4f92-9791-0b47c9a7a36f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/dataLakeStoreAccounts/testdatalake2611\",\r\n \"name\": \"testdatalake2611\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/dataLakeStoreAccounts/testdatalake26251\",\r\n \"name\": \"testdatalake26251\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "330"
+ ],
"Content-Type": [
"application/json"
],
@@ -2586,7 +3411,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:38 GMT"
+ "Fri, 22 Dec 2017 19:56:11 GMT"
],
"Pragma": [
"no-cache"
@@ -2598,7 +3423,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "1031b93a-65a9-4229-86a1-a9205710a87d"
+ "6bab80ac-6132-4b2f-bb86-632c3311dd29"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2613,10 +3438,10 @@
"14995"
],
"x-ms-correlation-request-id": [
- "28c747a0-8317-4e37-b954-613656ef8545"
+ "b0ca541d-d20d-4c07-ad8b-ed9172104070"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205039Z:28c747a0-8317-4e37-b954-613656ef8545"
+ "WESTUS2:20171222T195611Z:b0ca541d-d20d-4c07-ad8b-ed9172104070"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2625,8 +3450,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/DataLakeStoreAccounts/testdatalake2611?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzEvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI2MTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/DataLakeStoreAccounts/testdatalake26251?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODgvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI2MjUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n }\r\n}",
"RequestHeaders": {
@@ -2637,18 +3462,21 @@
"68"
],
"x-ms-client-request-id": [
- "8b8b9bb9-f70c-4bfc-89bc-d796afd12627"
+ "c40385d5-2f2d-414e-a643-ba19ea630eb7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/dataLakeStoreAccounts/testdatalake2611\",\r\n \"name\": \"testdatalake2611\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/dataLakeStoreAccounts/testdatalake26251\",\r\n \"name\": \"testdatalake26251\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "330"
+ ],
"Content-Type": [
"application/json"
],
@@ -2662,7 +3490,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:37 GMT"
+ "Fri, 22 Dec 2017 19:56:08 GMT"
],
"Pragma": [
"no-cache"
@@ -2674,7 +3502,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "e5ff2934-4cb1-4712-85e0-a5bdd7b86c3b"
+ "50c918f8-c278-4fb2-9c25-761143fcb000"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2686,13 +3514,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "93169ff9-c9c8-4780-8efc-9728509f8cc0"
+ "3ad5f55d-17dc-4da0-b4d4-818001294eea"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205037Z:93169ff9-c9c8-4780-8efc-9728509f8cc0"
+ "WESTUS2:20171222T195609Z:3ad5f55d-17dc-4da0-b4d4-818001294eea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2701,24 +3529,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/DataLakeStoreAccounts/?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzEvRGF0YUxha2VTdG9yZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/DataLakeStoreAccounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODgvRGF0YUxha2VTdG9yZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "64860c85-7a19-490f-895c-6b870d74e69a"
+ "cecfa2a8-c228-4ad1-b2d9-cc5d0f4b8254"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/dataLakeStoreAccounts/testdatalake16020\",\r\n \"name\": \"testdatalake16020\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/dataLakeStoreAccounts/testdatalake2611\",\r\n \"name\": \"testdatalake2611\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/dataLakeStoreAccounts/testdatalake16385\",\r\n \"name\": \"testdatalake16385\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/dataLakeStoreAccounts/testdatalake26251\",\r\n \"name\": \"testdatalake26251\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "673"
+ ],
"Content-Type": [
"application/json"
],
@@ -2732,7 +3563,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:38 GMT"
+ "Fri, 22 Dec 2017 19:56:10 GMT"
],
"Pragma": [
"no-cache"
@@ -2744,7 +3575,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "7dee3d0c-6c75-46b0-9ab0-a4729f74b963"
+ "c2a97db8-0e6b-4177-a9ca-bfd0d17f9472"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2756,13 +3587,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14997"
],
"x-ms-correlation-request-id": [
- "dad163eb-9331-446b-9e0e-43b252c4ce06"
+ "a8e3234b-2aa5-4f72-b77a-f68d7b668070"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205038Z:dad163eb-9331-446b-9e0e-43b252c4ce06"
+ "WESTUS2:20171222T195611Z:a8e3234b-2aa5-4f72-b77a-f68d7b668070"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2771,24 +3602,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/DataLakeStoreAccounts/?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzEvRGF0YUxha2VTdG9yZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/DataLakeStoreAccounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODgvRGF0YUxha2VTdG9yZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4375776c-5796-4e93-a2fb-03098c147a3a"
+ "03d5a117-5893-497e-8c66-47d18f899488"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/dataLakeStoreAccounts/testdatalake16020\",\r\n \"name\": \"testdatalake16020\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/dataLakeStoreAccounts/testdatalake16385\",\r\n \"name\": \"testdatalake16385\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "342"
+ ],
"Content-Type": [
"application/json"
],
@@ -2802,7 +3636,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:40 GMT"
+ "Fri, 22 Dec 2017 19:56:13 GMT"
],
"Pragma": [
"no-cache"
@@ -2814,7 +3648,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "e1ebd85b-1551-4539-a515-dfbbf1fec836"
+ "9e317cf2-dfac-43d8-bbc0-48b153fb37b4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2826,13 +3660,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14992"
],
"x-ms-correlation-request-id": [
- "04cf51a7-77f6-478d-b9c5-8f5e5de702eb"
+ "c12237ff-45f1-43ce-8beb-909b9f9148ac"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205040Z:04cf51a7-77f6-478d-b9c5-8f5e5de702eb"
+ "WESTUS2:20171222T195613Z:c12237ff-45f1-43ce-8beb-909b9f9148ac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2841,20 +3675,20 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/DataLakeStoreAccounts/testdatalake2611?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzEvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI2MTE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/DataLakeStoreAccounts/testdatalake26251?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODgvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI2MjUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f770f19c-0f87-47ef-b3d9-0353f91c6cad"
+ "640a7fa0-2f9d-4923-8657-080d309e5078"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
"ResponseBody": "",
@@ -2872,7 +3706,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:39 GMT"
+ "Fri, 22 Dec 2017 19:56:12 GMT"
],
"Pragma": [
"no-cache"
@@ -2881,7 +3715,7 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "cff9fb43-2703-442e-803d-21a9930eb74c"
+ "6d968b7e-7c6b-45c8-bd42-10bf2fb80bc0"
],
"X-AspNet-Version": [
"4.0.30319"
@@ -2890,13 +3724,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1199"
],
"x-ms-correlation-request-id": [
- "5f0fe4a8-a81f-4aea-b143-8358c4374fe1"
+ "39456694-2495-470f-b5d0-399be4f00c03"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205039Z:5f0fe4a8-a81f-4aea-b143-8358c4374fe1"
+ "WESTUS2:20171222T195612Z:39456694-2495-470f-b5d0-399be4f00c03"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2905,20 +3739,20 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/StorageAccounts/testazureblob19810?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzEvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxOTgxMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/StorageAccounts/testazureblob13314?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODgvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxMzMxND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4b72bdb5-51ca-4ea2-837e-ba1d170f1e0e"
+ "23bee54d-d6a8-47eb-82ff-97bb1b0a0882"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NestedResourceNotFound\",\r\n \"message\": \"Nested resource does not exist.\"\r\n }\r\n}",
@@ -2939,7 +3773,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:40 GMT"
+ "Fri, 22 Dec 2017 19:56:13 GMT"
],
"Pragma": [
"no-cache"
@@ -2948,7 +3782,7 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "fb755e48-8826-4c5a-82cd-9d5449432ebe"
+ "2f88eb41-d659-4b0e-9d0f-0a0dc846dde2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2960,13 +3794,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14997"
],
"x-ms-correlation-request-id": [
- "4b8d03e5-cba0-439d-8eab-513fece9ff4d"
+ "fb255fbb-8d37-4d4c-9592-59047f2a00f4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205041Z:4b8d03e5-cba0-439d-8eab-513fece9ff4d"
+ "WESTUS2:20171222T195614Z:fb255fbb-8d37-4d4c-9592-59047f2a00f4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2975,24 +3809,27 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/StorageAccounts/testazureblob19810?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzEvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxOTgxMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/StorageAccounts/testazureblob13314?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODgvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxMzMxND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c95774e6-d55d-43e9-982c-173ea1b74274"
+ "a33f325d-9e9a-4fbb-9328-4c767290155e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/storageAccounts/testazureblob19810\",\r\n \"name\": \"testazureblob19810\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/storageAccounts/testazureblob13314\",\r\n \"name\": \"testazureblob13314\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "314"
+ ],
"Content-Type": [
"application/json"
],
@@ -3006,7 +3843,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:42 GMT"
+ "Fri, 22 Dec 2017 19:56:15 GMT"
],
"Pragma": [
"no-cache"
@@ -3018,7 +3855,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "4dc0669a-1dfb-445a-a065-04ee7f068769"
+ "77b20704-3741-47bb-81c8-626c0c9dadc9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3030,13 +3867,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14997"
],
"x-ms-correlation-request-id": [
- "6ae2702b-51e9-49c6-a35d-12f229acb176"
+ "a031659f-7726-4f72-a7d8-5efd2d4c1582"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205043Z:6ae2702b-51e9-49c6-a35d-12f229acb176"
+ "WESTUS2:20171222T195616Z:a031659f-7726-4f72-a7d8-5efd2d4c1582"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3045,24 +3882,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/StorageAccounts/testazureblob19810?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzEvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxOTgxMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/StorageAccounts/testazureblob13314?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODgvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxMzMxND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "22b7b9d0-a5d0-4fa8-bb64-12df81dc3e61"
+ "9a44f15e-4338-43f1-a63c-f56baee4cf0b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/storageAccounts/testazureblob19810\",\r\n \"name\": \"testazureblob19810\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/storageAccounts/testazureblob13314\",\r\n \"name\": \"testazureblob13314\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "314"
+ ],
"Content-Type": [
"application/json"
],
@@ -3076,7 +3916,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:43 GMT"
+ "Fri, 22 Dec 2017 19:56:18 GMT"
],
"Pragma": [
"no-cache"
@@ -3088,7 +3928,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "8392c187-78b9-41ea-921b-85fac9a619f4"
+ "afae6a04-d20f-47f2-bfe7-76b146e24341"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3100,13 +3940,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14996"
],
"x-ms-correlation-request-id": [
- "5330f5b2-1234-4435-96e2-331962eda7c8"
+ "685859e0-10c1-4077-95d1-c8b5b2733797"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205044Z:5330f5b2-1234-4435-96e2-331962eda7c8"
+ "WESTUS2:20171222T195618Z:685859e0-10c1-4077-95d1-c8b5b2733797"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3115,10 +3955,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/StorageAccounts/testazureblob19810?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzEvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxOTgxMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/StorageAccounts/testazureblob13314?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODgvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxMzMxND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"accessKey\": \"bGJgpfKzBauuxoh6mnH0vPBFPXi72kKMX6TMKZzzXL2A+AAAzUT/GYo/ghd44h6JbNsAGNdqL1WFyhjYHE6Xjw==\",\r\n \"suffix\": \"core.windows.net\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"accessKey\": \"CKaJTTwQ/wxeP286k9S4YKoeLdiI9w5kQ7DOdVQUZablTPILv60tiy7QuYIgg/QYXQ2A4i/9IshiR9eS/LDF/w==\",\r\n \"suffix\": \"core.windows.net\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -3127,18 +3967,21 @@
"172"
],
"x-ms-client-request-id": [
- "0ea9fa15-f561-4b78-8514-0264324957bc"
+ "5df36e4a-1e5b-4128-9a16-aa7002cd1140"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/storageAccounts/testazureblob19810\",\r\n \"name\": \"testazureblob19810\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/storageAccounts/testazureblob13314\",\r\n \"name\": \"testazureblob13314\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "314"
+ ],
"Content-Type": [
"application/json"
],
@@ -3152,7 +3995,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:42 GMT"
+ "Fri, 22 Dec 2017 19:56:15 GMT"
],
"Pragma": [
"no-cache"
@@ -3164,7 +4007,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "830eee5f-f609-4b1f-b4f5-c1f8fa289fb0"
+ "d95bab63-439b-4616-b286-8079353be919"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3176,13 +4019,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1198"
],
"x-ms-correlation-request-id": [
- "240ee287-aa89-422b-a7b2-5123c07e6dfa"
+ "8afeb9f3-f737-4926-a813-8f9a0a3d4731"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205042Z:240ee287-aa89-422b-a7b2-5123c07e6dfa"
+ "WESTUS2:20171222T195615Z:8afeb9f3-f737-4926-a813-8f9a0a3d4731"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3191,24 +4034,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/StorageAccounts/?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzEvU3RvcmFnZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/StorageAccounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODgvU3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1eb03b3d-70c8-4834-996f-70be945ed7c1"
+ "f3d7048a-9cbc-4692-be53-713ca7ff903d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/storageAccounts/testazureblob19810\",\r\n \"name\": \"testazureblob19810\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/storageAccounts/testazureblob13314\",\r\n \"name\": \"testazureblob13314\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "326"
+ ],
"Content-Type": [
"application/json"
],
@@ -3222,7 +4068,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:43 GMT"
+ "Fri, 22 Dec 2017 19:56:16 GMT"
],
"Pragma": [
"no-cache"
@@ -3234,7 +4080,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "5d445afb-4d94-4e8f-9e8b-4d14553b6cff"
+ "d4363125-7d5c-4379-b597-96063a9a2b76"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3246,13 +4092,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14993"
],
"x-ms-correlation-request-id": [
- "99d87a04-c9b7-4da8-bbb7-2b58664d0c70"
+ "f241d8c0-9856-4af1-8946-64250bdf72e8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205043Z:99d87a04-c9b7-4da8-bbb7-2b58664d0c70"
+ "WESTUS2:20171222T195617Z:f241d8c0-9856-4af1-8946-64250bdf72e8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3261,24 +4107,27 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/StorageAccounts/?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzEvU3RvcmFnZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/StorageAccounts?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODgvU3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b26f6520-ef9d-4ad7-be5a-388ccb7d73d4"
+ "83620951-7974-4008-940f-eb38dcaeb302"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
"Content-Type": [
"application/json"
],
@@ -3292,7 +4141,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:45 GMT"
+ "Fri, 22 Dec 2017 19:56:19 GMT"
],
"Pragma": [
"no-cache"
@@ -3304,7 +4153,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "2980e1f9-55bf-4235-9d8e-8a9568dcd81c"
+ "3ac6e40a-d10f-40af-bdaf-9e000158357f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -3316,13 +4165,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14991"
],
"x-ms-correlation-request-id": [
- "45a19cb4-11e0-4bd0-a678-7e3d2173eb52"
+ "5b061167-43a0-4db1-83d8-2ae6fad4f463"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205045Z:45a19cb4-11e0-4bd0-a678-7e3d2173eb52"
+ "WESTUS2:20171222T195619Z:5b061167-43a0-4db1-83d8-2ae6fad4f463"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3331,20 +4180,20 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171/StorageAccounts/testazureblob19810?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzEvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxOTgxMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188/StorageAccounts/testazureblob13314?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODgvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxMzMxND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b94f5bf-554d-4f61-865a-0b3632271958"
+ "b38f8b76-c0dd-4cf3-a668-4a0f15f3960f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
"ResponseBody": "",
@@ -3362,7 +4211,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:44 GMT"
+ "Fri, 22 Dec 2017 19:56:18 GMT"
],
"Pragma": [
"no-cache"
@@ -3371,7 +4220,7 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "b158473f-b3bf-4ada-8be4-084430279764"
+ "923c62c2-085c-4ce5-a9d0-d20382aafe80"
],
"X-AspNet-Version": [
"4.0.30319"
@@ -3380,13 +4229,159 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "6cb35310-a4e9-4015-bd3e-9e730a9ec78f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T195619Z:6cb35310-a4e9-4015-bd3e-9e730a9ec78f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/capability?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvY2FwYWJpbGl0eT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1faa1491-9bc9-4975-82b9-be49096cf009"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"subscriptionId\": \"04319d6d-4a66-4701-bb2f-e7dbbd9ae4db\",\r\n \"state\": \"Registered\",\r\n \"maxAccountCount\": 3,\r\n \"accountCount\": 3,\r\n \"migrationState\": false\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "138"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:56:20 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "94fe63a4-6138-40a8-b868-477046c1f589"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14989"
+ ],
+ "x-ms-correlation-request-id": [
+ "e29f0bad-7c23-4135-95f9-bb6bae9391c9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T195620Z:e29f0bad-7c23-4135-95f9-bb6bae9391c9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/providers/Microsoft.DataLakeAnalytics/operations?api-version=2016-11-01",
+ "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3Mvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9e157930-b43b-490f-a251-ebb9aa392ef9"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Available Operations\",\r\n \"operation\": \"Get Available Operations\",\r\n \"description\": \"Get available operations of DataLakeAnalytics.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Registration\",\r\n \"operation\": \"Register to DataLakeAnalytics\",\r\n \"description\": \"Register subscription to DataLakeAnalytics.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Account\",\r\n \"operation\": \"Get DataLakeAnalytics Account\",\r\n \"description\": \"Get information about an existing DataLakeAnalytics account.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Account\",\r\n \"operation\": \"Create or Update DataLakeAnalytics Account\",\r\n \"description\": \"Create or update a DataLakeAnalytics account.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Account\",\r\n \"operation\": \"Delete DataLakeAnalytics Account\",\r\n \"description\": \"Delete a DataLakeAnalytics account.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/operationResults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Operation Result\",\r\n \"operation\": \"Get DataLakeAnalytics Account OperationResult\",\r\n \"description\": \"Get result of a DataLakeAnalytics account operation.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Firewall Rule\",\r\n \"operation\": \"Get Firewall Rule\",\r\n \"description\": \"Get information about a firewall rule.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Firewall Rule\",\r\n \"operation\": \"Create or Update Firewall Rule\",\r\n \"description\": \"Create or update a firewall rule.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Firewall Rule\",\r\n \"operation\": \"Delete Firewall Rule\",\r\n \"description\": \"Delete a firewall rule.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"DataLakeStore Account\",\r\n \"operation\": \"Get Linked DataLakeStore Account\",\r\n \"description\": \"Get information about a linked DataLakeStore account of a DataLakeAnalytics account.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"DataLakeStore Account\",\r\n \"operation\": \"Create or Update Linked DataLakeStore Account\",\r\n \"description\": \"Create or update a linked DataLakeStore account of a DataLakeAnalytics account.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"DataLakeStore Account\",\r\n \"operation\": \"Unlink DataLakeStore Account\",\r\n \"description\": \"Unlink a DataLakeStore account from a DataLakeAnalytics account.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Storage Account\",\r\n \"operation\": \"Get Linked Storage Account\",\r\n \"description\": \"Get information about a linked Storage account of a DataLakeAnalytics account.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Storage Account\",\r\n \"operation\": \"Create or Update Linked Storage Account\",\r\n \"description\": \"Create or update a linked Storage account of a DataLakeAnalytics account.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Storage Account\",\r\n \"operation\": \"Unlink Storage Account\",\r\n \"description\": \"Unlink a Storage account from a DataLakeAnalytics account.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Containers/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Container\",\r\n \"operation\": \"Get Storage Container\",\r\n \"description\": \"Get containers of a linked Storage account of a DataLakeAnalytics account.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Containers/listSasTokens/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"SAS Token\",\r\n \"operation\": \"List SAS Tokens\",\r\n \"description\": \"List SAS tokens for storage containers of a linked Storage account of a DataLakeAnalytics account.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Compute Policy\",\r\n \"operation\": \"Get Compute Policy\",\r\n \"description\": \"Get information about a compute policy.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Compute Policy\",\r\n \"operation\": \"Create or Update Compute Policy\",\r\n \"description\": \"Create or update a compute policy.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Compute Policy\",\r\n \"operation\": \"Delete Compute Policy\",\r\n \"description\": \"Delete a compute policy.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Job Ownership\",\r\n \"operation\": \"Take Ownership of DataLakeAnalytics Job\",\r\n \"description\": \"Grant permissions to cancel jobs submitted by other users.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/locations/capability/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Subscription Capability\",\r\n \"operation\": \"Get DataLakeAnalytics Subscription Capability\",\r\n \"description\": \"Get capability information of a subscription regarding using DataLakeAnalytics.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/locations/checkNameAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Name Availability\",\r\n \"operation\": \"Check DataLakeAnalytics Account Name Availability\",\r\n \"description\": \"Check availability of a DataLakeAnalytics account name.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/locations/operationResults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Operation Result\",\r\n \"operation\": \"Get DataLakeAnalytics Account OperationResult\",\r\n \"description\": \"Get result of a DataLakeAnalytics account operation.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Metric Definition\",\r\n \"operation\": \"Get DataLakeAnalytics Account metric definitions\",\r\n \"description\": \"Get the available metrics for the DataLakeAnalytics account.\"\r\n },\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"JobEndedSuccess\",\r\n \"displayName\": \"Successful Jobs\",\r\n \"displayDescription\": \"Count of successful jobs.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"blobDuration\": \"P1D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"JobEndedFailure\",\r\n \"displayName\": \"Failed Jobs\",\r\n \"displayDescription\": \"Count of failed jobs.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"blobDuration\": \"P1D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"JobEndedCancelled\",\r\n \"displayName\": \"Cancelled Jobs\",\r\n \"displayDescription\": \"Count of cancelled jobs.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"blobDuration\": \"P1D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"JobAUEndedSuccess\",\r\n \"displayName\": \"Successful AU Time\",\r\n \"displayDescription\": \"Total AU time for successful jobs.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"blobDuration\": \"P1D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"JobAUEndedFailure\",\r\n \"displayName\": \"Failed AU Time\",\r\n \"displayDescription\": \"Total AU time for failed jobs.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"blobDuration\": \"P1D\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"JobAUEndedCancelled\",\r\n \"displayName\": \"Cancelled AU Time\",\r\n \"displayDescription\": \"Total AU time for cancelled jobs.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"timeGrain\": \"PT1H\",\r\n \"blobDuration\": \"P1D\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Log Definition\",\r\n \"operation\": \"Get DataLakeAnalytics Account log definitions\",\r\n \"description\": \"Get the available logs for the DataLakeAnalytics account.\"\r\n },\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"Audit\",\r\n \"displayName\": \"Audit Logs\",\r\n \"blobDuration\": \"PT1H\"\r\n },\r\n {\r\n \"name\": \"Requests\",\r\n \"displayName\": \"Request Logs\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Diagnostic Setting\",\r\n \"operation\": \"Get DataLakeAnalytics Account diagnostic settings\",\r\n \"description\": \"Get the diagnostic settings for the DataLakeAnalytics account.\"\r\n },\r\n \"origin\": \"system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft DataLakeAnalytics\",\r\n \"resource\": \"Diagnostic Setting\",\r\n \"operation\": \"Create or update DataLakeAnalytics Account diagnostic settings\",\r\n \"description\": \"Create or update the diagnostic settings for the DataLakeAnalytics account.\"\r\n },\r\n \"origin\": \"system\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "9660"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:56:20 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "34e8c264-149b-490d-8295-aa14db9ff494"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-tenant-reads": [
+ "14998"
],
"x-ms-correlation-request-id": [
- "13ea3059-0ee9-477c-960d-d3aaf1b3c800"
+ "f5b67f22-f9b5-40b9-adf5-7ef56c6f8e27"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205045Z:13ea3059-0ee9-477c-960d-d3aaf1b3c800"
+ "WESTUS2:20171222T195621Z:f5b67f22-f9b5-40b9-adf5-7ef56c6f8e27"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3395,20 +4390,20 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad250c5a-38c1-485c-a0aa-89bf7bac469d"
+ "7dbb0fc7-ede2-4e27-8bbf-0b076764c49d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
"ResponseBody": "",
@@ -3426,7 +4421,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:48 GMT"
+ "Fri, 22 Dec 2017 19:56:24 GMT"
],
"Pragma": [
"no-cache"
@@ -3435,7 +4430,7 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "374bc26c-0e41-4a92-98c1-84bc7bca65cf"
+ "5ff6fe82-4303-41c6-a026-8fef62276b87"
],
"X-AspNet-Version": [
"4.0.30319"
@@ -3444,13 +4439,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1199"
],
"x-ms-correlation-request-id": [
- "ce11bda5-b7f0-4a79-a36d-c0cf585c4e75"
+ "dbebb29a-cb57-469b-bec8-7426f024c41d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205049Z:ce11bda5-b7f0-4a79-a36d-c0cf585c4e75"
+ "WESTUS2:20171222T195625Z:dbebb29a-cb57-469b-bec8-7426f024c41d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3459,20 +4454,20 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd2f00e3-ad54-40ce-8267-24f8fe7e50a2"
+ "2ead3945-00a1-462a-bd96-a7c3883fa7a9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
"ResponseBody": "",
@@ -3484,22 +4479,22 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:49 GMT"
+ "Fri, 22 Dec 2017 19:56:25 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-request-id": [
- "5bb6f3ee-dfa6-4511-8e27-ed7801f83e4b"
+ "256f5034-ecdb-4344-b1c5-b529ae0e43ee"
],
"x-ms-correlation-request-id": [
- "5bb6f3ee-dfa6-4511-8e27-ed7801f83e4b"
+ "256f5034-ecdb-4344-b1c5-b529ae0e43ee"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205049Z:5bb6f3ee-dfa6-4511-8e27-ed7801f83e4b"
+ "WESTUS2:20171222T195625Z:256f5034-ecdb-4344-b1c5-b529ae0e43ee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3508,20 +4503,20 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4e69ac32-6ed1-4586-b228-93bb9936471b"
+ "d366126d-ce02-41b8-b784-8ab668da07f4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
"ResponseBody": "",
@@ -3533,22 +4528,22 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:49 GMT"
+ "Fri, 22 Dec 2017 19:56:25 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-request-id": [
- "1c052924-d05a-46b4-9190-1eb8d1839812"
+ "2c59b2ee-a840-46f2-ae3b-1876a0cf1757"
],
"x-ms-correlation-request-id": [
- "1c052924-d05a-46b4-9190-1eb8d1839812"
+ "2c59b2ee-a840-46f2-ae3b-1876a0cf1757"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205049Z:1c052924-d05a-46b4-9190-1eb8d1839812"
+ "WESTUS2:20171222T195626Z:2c59b2ee-a840-46f2-ae3b-1876a0cf1757"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3557,20 +4552,20 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11672/providers/Microsoft.DataLakeAnalytics/accounts/testaba14171?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE2NzIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTQxNzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19514/providers/Microsoft.DataLakeAnalytics/accounts/testaba15188?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTUxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5e19c02b-8a4f-4c3e-a7dc-d0dde8492c22"
+ "92e85da3-b4d6-477e-9ed7-6625e9220180"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
"ResponseBody": "",
@@ -3582,22 +4577,22 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:50:49 GMT"
+ "Fri, 22 Dec 2017 19:56:25 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1196"
],
"x-ms-request-id": [
- "267297e1-3006-4ed2-9347-8c99b534f132"
+ "bae04b05-d0dd-45ff-86ec-f46d8c0749df"
],
"x-ms-correlation-request-id": [
- "267297e1-3006-4ed2-9347-8c99b534f132"
+ "bae04b05-d0dd-45ff-86ec-f46d8c0749df"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205050Z:267297e1-3006-4ed2-9347-8c99b534f132"
+ "WESTUS2:20171222T195626Z:bae04b05-d0dd-45ff-86ec-f46d8c0749df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3608,24 +4603,24 @@
],
"Names": {
".ctor": [
- "rgaba11672",
- "testaba14171",
- "testaba2138",
- "teststorage19000",
- "testdatalake16020",
- "testdatalake2611",
- "testazureblob19810",
- "testdb11386",
- "testtbl18381",
- "testtvf13849",
- "testproc11201",
- "testview13811",
- "testcred18380",
- "testsecret18586",
- "testsecretpwd19376"
+ "rgaba19514",
+ "testaba15188",
+ "testaba2533",
+ "teststorage11316",
+ "testdatalake16385",
+ "testdatalake26251",
+ "testazureblob13314",
+ "testdb14777",
+ "testtbl14913",
+ "testtvf19352",
+ "testproc17862",
+ "testview18700",
+ "testcred11439",
+ "testsecret15432",
+ "testsecretpwd1171"
]
},
"Variables": {
- "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db"
}
}
\ No newline at end of file
diff --git a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/FirewallTest.json b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/FirewallTest.json
index c5e3996165b7..632100cae606 100644
--- a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/FirewallTest.json
+++ b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/FirewallTest.json
@@ -1,23 +1,23 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9918bd2e-22e6-4a01-b8cb-7d5bed3a942f"
+ "83cc41ee-2683-48c1-9236-98825ee4b94a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "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 \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -29,7 +29,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:01 GMT"
+ "Fri, 22 Dec 2017 19:34:10 GMT"
],
"Pragma": [
"no-cache"
@@ -41,16 +41,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-request-id": [
- "9942a8d6-8f87-4e70-be7d-a56559e86401"
+ "60720a6e-526d-4853-acf5-8e7034f27aaa"
],
"x-ms-correlation-request-id": [
- "9942a8d6-8f87-4e70-be7d-a56559e86401"
+ "60720a6e-526d-4853-acf5-8e7034f27aaa"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201501Z:9942a8d6-8f87-4e70-be7d-a56559e86401"
+ "WESTUS2:20171222T193410Z:60720a6e-526d-4853-acf5-8e7034f27aaa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -59,23 +59,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8c627640-234c-431c-b413-a5e181d5188a"
+ "e0773404-1154-4c1b-89fb-874b627a5c76"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "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 \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -87,7 +87,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:01 GMT"
+ "Fri, 22 Dec 2017 19:34:10 GMT"
],
"Pragma": [
"no-cache"
@@ -96,16 +96,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14997"
],
"x-ms-request-id": [
- "e2b2aafe-7ff5-4725-b177-b3c1d2b0d3be"
+ "6d36645e-73e9-4fba-9e24-184dd1f98688"
],
"x-ms-correlation-request-id": [
- "e2b2aafe-7ff5-4725-b177-b3c1d2b0d3be"
+ "6d36645e-73e9-4fba-9e24-184dd1f98688"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201501Z:e2b2aafe-7ff5-4725-b177-b3c1d2b0d3be"
+ "WESTUS2:20171222T193410Z:6d36645e-73e9-4fba-9e24-184dd1f98688"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -114,23 +114,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4d3f50f2-72d2-44bd-9f88-89d85712cbf2"
+ "10502266-4601-4221-8198-d2d04eb00a91"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -142,7 +142,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:02 GMT"
+ "Fri, 22 Dec 2017 19:34:11 GMT"
],
"Pragma": [
"no-cache"
@@ -154,16 +154,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-request-id": [
- "00e3193b-a095-4a27-a637-006fc7e53b0f"
+ "bd29ded2-1a8c-4394-9ddf-de08afa2b513"
],
"x-ms-correlation-request-id": [
- "00e3193b-a095-4a27-a637-006fc7e53b0f"
+ "bd29ded2-1a8c-4394-9ddf-de08afa2b513"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201503Z:00e3193b-a095-4a27-a637-006fc7e53b0f"
+ "WESTUS2:20171222T193411Z:bd29ded2-1a8c-4394-9ddf-de08afa2b513"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -172,23 +172,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "27a65ac8-64b3-48c4-ae55-cb6b24a9c857"
+ "febbe6fe-bc73-412f-929a-469ea4783b79"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -200,7 +200,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:02 GMT"
+ "Fri, 22 Dec 2017 19:34:11 GMT"
],
"Pragma": [
"no-cache"
@@ -209,16 +209,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14996"
],
"x-ms-request-id": [
- "bd83a956-4d15-46e8-bd5a-eb2d8420ef44"
+ "8a5b7544-2d66-4fbc-b0c0-904a721184bd"
],
"x-ms-correlation-request-id": [
- "bd83a956-4d15-46e8-bd5a-eb2d8420ef44"
+ "8a5b7544-2d66-4fbc-b0c0-904a721184bd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201503Z:bd83a956-4d15-46e8-bd5a-eb2d8420ef44"
+ "WESTUS2:20171222T193411Z:8a5b7544-2d66-4fbc-b0c0-904a721184bd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -227,23 +227,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d646c963-6405-4184-aa9a-840ee645cd95"
+ "f9dbbe71-1144-415f-9599-98f1762b8912"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -255,7 +255,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:03 GMT"
+ "Fri, 22 Dec 2017 19:34:11 GMT"
],
"Pragma": [
"no-cache"
@@ -267,16 +267,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-request-id": [
- "4adb892e-e6a2-4641-915b-40df1302b472"
+ "30cfdb20-372f-4f78-8b5f-68389f1d8089"
],
"x-ms-correlation-request-id": [
- "4adb892e-e6a2-4641-915b-40df1302b472"
+ "30cfdb20-372f-4f78-8b5f-68389f1d8089"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201504Z:4adb892e-e6a2-4641-915b-40df1302b472"
+ "WESTUS2:20171222T193411Z:30cfdb20-372f-4f78-8b5f-68389f1d8089"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -285,23 +285,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b77f84b3-4af0-429b-b851-954a736aaef8"
+ "b2cb498a-c0f0-4bb1-8e8a-8f1d2b81f2c5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -313,7 +313,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:03 GMT"
+ "Fri, 22 Dec 2017 19:34:12 GMT"
],
"Pragma": [
"no-cache"
@@ -322,16 +322,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14995"
],
"x-ms-request-id": [
- "fb05c826-64c1-49b0-827b-9ce533298fb3"
+ "485fe213-22ec-479c-91fc-0d4ceb7e6d4b"
],
"x-ms-correlation-request-id": [
- "fb05c826-64c1-49b0-827b-9ce533298fb3"
+ "485fe213-22ec-479c-91fc-0d4ceb7e6d4b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201504Z:fb05c826-64c1-49b0-827b-9ce533298fb3"
+ "WESTUS2:20171222T193412Z:485fe213-22ec-479c-91fc-0d4ceb7e6d4b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -340,23 +340,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba17104?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTcxMDQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba15635?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTU2MzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a094bf4b-7602-4be5-9a27-3eeba5e98a26"
+ "f32a3088-abfd-4f54-834a-5085f3dd327a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba17104' could not be found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba15635' could not be found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"102"
@@ -371,7 +371,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:03 GMT"
+ "Fri, 22 Dec 2017 19:34:12 GMT"
],
"Pragma": [
"no-cache"
@@ -380,16 +380,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14994"
],
"x-ms-request-id": [
- "c0f31730-f1be-47ac-b90d-b7a8e2f95ea8"
+ "71c4a5a5-bf27-4343-9b55-c1f060b67f30"
],
"x-ms-correlation-request-id": [
- "c0f31730-f1be-47ac-b90d-b7a8e2f95ea8"
+ "71c4a5a5-bf27-4343-9b55-c1f060b67f30"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201504Z:c0f31730-f1be-47ac-b90d-b7a8e2f95ea8"
+ "WESTUS2:20171222T193412Z:71c4a5a5-bf27-4343-9b55-c1f060b67f30"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -398,23 +398,23 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba17104?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTcxMDQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba15635?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTU2MzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4ce6bf32-2232-4a96-923a-2cefcdbb40fb"
+ "7846e7e0-e314-4ed5-b936-427dbd75ecba"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104\",\r\n \"name\": \"rgaba17104\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635\",\r\n \"name\": \"rgaba15635\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -426,7 +426,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:04 GMT"
+ "Fri, 22 Dec 2017 19:34:13 GMT"
],
"Pragma": [
"no-cache"
@@ -435,16 +435,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14993"
],
"x-ms-request-id": [
- "fa8c535f-ebb6-4152-bc3d-1326948e328f"
+ "93947026-c156-4026-adae-14bb66672953"
],
"x-ms-correlation-request-id": [
- "fa8c535f-ebb6-4152-bc3d-1326948e328f"
+ "93947026-c156-4026-adae-14bb66672953"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201505Z:fa8c535f-ebb6-4152-bc3d-1326948e328f"
+ "WESTUS2:20171222T193413Z:93947026-c156-4026-adae-14bb66672953"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -453,8 +453,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba17104?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTcxMDQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba15635?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTU2MzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
@@ -465,17 +465,17 @@
"31"
],
"x-ms-client-request-id": [
- "42d760b2-c448-4d51-a497-6920a5ade5a2"
+ "fb41ea75-c328-4ac1-9fc2-ef7bc21a28d1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104\",\r\n \"name\": \"rgaba17104\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635\",\r\n \"name\": \"rgaba15635\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"174"
@@ -490,22 +490,22 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:04 GMT"
+ "Fri, 22 Dec 2017 19:34:13 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1196"
],
"x-ms-request-id": [
- "c5e61146-13f2-4ca3-8848-73b27cc42275"
+ "b55091ff-4221-4618-8883-8c98993b025a"
],
"x-ms-correlation-request-id": [
- "c5e61146-13f2-4ca3-8848-73b27cc42275"
+ "b55091ff-4221-4618-8883-8c98993b025a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201505Z:c5e61146-13f2-4ca3-8848-73b27cc42275"
+ "WESTUS2:20171222T193413Z:b55091ff-4221-4618-8883-8c98993b025a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -514,23 +514,23 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake11354?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTExMzU0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake18741?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4NzQxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5af4e0bd-4721-4f47-a05c-08302d62b33a"
+ "7217927b-d40f-4576-93d9-31ce536a3b1a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake11354' under resource group 'rgaba17104' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake18741' under resource group 'rgaba15635' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"164"
@@ -545,7 +545,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:05 GMT"
+ "Fri, 22 Dec 2017 19:34:14 GMT"
],
"Pragma": [
"no-cache"
@@ -554,13 +554,13 @@
"gateway"
],
"x-ms-request-id": [
- "6eb3bb9a-d152-454c-b081-7377d0750f81"
+ "38879fd4-bd3b-4951-b33f-ca1bac5633d7"
],
"x-ms-correlation-request-id": [
- "6eb3bb9a-d152-454c-b081-7377d0750f81"
+ "38879fd4-bd3b-4951-b33f-ca1bac5633d7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201506Z:6eb3bb9a-d152-454c-b081-7377d0750f81"
+ "WESTUS2:20171222T193414Z:38879fd4-bd3b-4951-b33f-ca1bac5633d7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -569,17 +569,17 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake11354?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTExMzU0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake18741?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4NzQxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11354.azuredatalakestore.net\",\r\n \"accountId\": \"7bf3aa84-0ab8-4635-b2d3-d5c2c942b572\",\r\n \"creationTime\": \"2017-06-09T20:15:08.5735745Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:15:08.5735745Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake11354\",\r\n \"name\": \"testdatalake11354\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18741.azuredatalakestore.net\",\r\n \"accountId\": \"2601c8a3-6732-4be5-ab12-6043435ca5bf\",\r\n \"creationTime\": \"2017-12-22T19:34:18.4090828Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:34:18.4090828Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake18741\",\r\n \"name\": \"testdatalake18741\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -594,7 +594,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:38 GMT"
+ "Fri, 22 Dec 2017 19:34:49 GMT"
],
"Pragma": [
"no-cache"
@@ -606,7 +606,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "ea312f2c-3620-4c94-b8ea-fba5604d1714"
+ "b5aabe78-c806-46f9-9f2f-8be17c363150"
],
"X-Content-Type-Options": [
"nosniff"
@@ -621,10 +621,10 @@
"14996"
],
"x-ms-correlation-request-id": [
- "d4b0ff9d-1aff-4362-ba2e-2bbf854091ba"
+ "5f91eb84-8dae-4fae-bc3c-1781524ead24"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201539Z:d4b0ff9d-1aff-4362-ba2e-2bbf854091ba"
+ "WESTUS2:20171222T193450Z:5f91eb84-8dae-4fae-bc3c-1781524ead24"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -633,23 +633,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake11354?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTExMzU0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake18741?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4NzQxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d727c598-162a-4fe9-b300-5a51f6905c5d"
+ "fecb2fc6-7bd2-4c6f-9e6b-a210da41f3d9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11354.azuredatalakestore.net\",\r\n \"accountId\": \"7bf3aa84-0ab8-4635-b2d3-d5c2c942b572\",\r\n \"creationTime\": \"2017-06-09T20:15:08.5735745Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:15:08.5735745Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake11354\",\r\n \"name\": \"testdatalake11354\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18741.azuredatalakestore.net\",\r\n \"accountId\": \"2601c8a3-6732-4be5-ab12-6043435ca5bf\",\r\n \"creationTime\": \"2017-12-22T19:34:18.4090828Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:34:18.4090828Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake18741\",\r\n \"name\": \"testdatalake18741\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -664,7 +664,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:39 GMT"
+ "Fri, 22 Dec 2017 19:34:50 GMT"
],
"Pragma": [
"no-cache"
@@ -676,7 +676,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "3f8007f1-1c1f-45f7-8a59-19a62f48c7ce"
+ "76250cad-1355-41f1-b8b1-3bdcb2f87de5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -688,13 +688,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14989"
],
"x-ms-correlation-request-id": [
- "9e1b40a4-1cae-4cd0-a55e-158247677d09"
+ "d28be3ed-f314-492a-b8f1-1c089824daec"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201539Z:9e1b40a4-1cae-4cd0-a55e-158247677d09"
+ "WESTUS2:20171222T193451Z:d28be3ed-f314-492a-b8f1-1c089824daec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -703,8 +703,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake11354?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTExMzU0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake18741?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4NzQxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
@@ -715,20 +715,20 @@
"31"
],
"x-ms-client-request-id": [
- "6a1fb4bb-9f3c-4407-a1c0-a4b1cef46b9d"
+ "68e70164-43fc-4a97-b1d4-dd38eaf94ad0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"7bf3aa84-0ab8-4635-b2d3-d5c2c942b572\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake11354\",\r\n \"name\": \"testdatalake11354\",\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 \"accountId\": \"2601c8a3-6732-4be5-ab12-6043435ca5bf\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake18741\",\r\n \"name\": \"testdatalake18741\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "421"
+ "365"
],
"Content-Type": [
"application/json"
@@ -743,13 +743,13 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:07 GMT"
+ "Fri, 22 Dec 2017 19:34:17 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake11354/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake18741/operationresults/0?api-version=2016-11-01"
],
"Retry-After": [
"10"
@@ -758,10 +758,10 @@
"Microsoft-IIS/8.5"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7bf3aa84-0ab8-4635-b2d3-d5c2c942b5720?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2601c8a3-6732-4be5-ab12-6043435ca5bf0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "0a163ba0-4cbe-445a-950e-3c4054327a91"
+ "f12d564b-2bd1-4ece-8fa4-8770ee83fbf2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -773,13 +773,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "2fd742d4-3d56-4377-87cd-fda23f8a9886"
+ "ce9726e7-e7d7-4d92-8270-65e2be0c5da0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201507Z:2fd742d4-3d56-4377-87cd-fda23f8a9886"
+ "WESTUS2:20171222T193417Z:ce9726e7-e7d7-4d92-8270-65e2be0c5da0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -788,13 +788,141 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7bf3aa84-0ab8-4635-b2d3-d5c2c942b5720?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzdiZjNhYTg0LTBhYjgtNDYzNS1iMmQzLWQ1YzJjOTQyYjU3MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2601c8a3-6732-4be5-ab12-6043435ca5bf0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI2MDFjOGEzLTY3MzItNGJlNS1hYjEyLTYwNDM0MzVjYTViZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:34:27 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "7fb745fa-c5a8-4c4e-96aa-ddf2c08c55b4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f18167d-79fb-415c-9177-bcc897f640f2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T193427Z:5f18167d-79fb-415c-9177-bcc897f640f2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2601c8a3-6732-4be5-ab12-6043435ca5bf0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI2MDFjOGEzLTY3MzItNGJlNS1hYjEyLTYwNDM0MzVjYTViZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:34:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "88a68bdd-bf03-4c91-a244-9f196282d1e4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-correlation-request-id": [
+ "0073f1a7-cc09-4e50-885c-13a0aa993d41"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T193438Z:0073f1a7-cc09-4e50-885c-13a0aa993d41"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2601c8a3-6732-4be5-ab12-6043435ca5bf0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzI2MDFjOGEzLTY3MzItNGJlNS1hYjEyLTYwNDM0MzVjYTViZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
@@ -813,7 +941,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:38 GMT"
+ "Fri, 22 Dec 2017 19:34:48 GMT"
],
"Pragma": [
"no-cache"
@@ -825,7 +953,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "40a33ee9-ac8e-490c-b5ac-1a17c0ba06ac"
+ "ab59db3c-6407-4485-a54e-d8330b61f9a0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -837,13 +965,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14995"
],
"x-ms-correlation-request-id": [
- "bd226433-564c-4787-b162-0a6eb66fcb43"
+ "86ae69b1-487b-4ced-93a4-b53865ce0d87"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201538Z:bd226433-564c-4787-b162-0a6eb66fcb43"
+ "WESTUS2:20171222T193449Z:86ae69b1-487b-4ced-93a4-b53865ce0d87"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -852,23 +980,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake26323?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MzIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake28809?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9fda3c01-e1fd-48e2-92da-8a343ae0f4ce"
+ "05d66a90-87a3-40f4-80c3-fc861e5d38ac"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake26323' under resource group 'rgaba17104' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake28809' under resource group 'rgaba15635' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"164"
@@ -883,7 +1011,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:38 GMT"
+ "Fri, 22 Dec 2017 19:34:52 GMT"
],
"Pragma": [
"no-cache"
@@ -892,13 +1020,13 @@
"gateway"
],
"x-ms-request-id": [
- "31ee5521-c4cf-410d-939c-1daee77db9d8"
+ "30cf1712-c142-41e4-831f-20e049481a57"
],
"x-ms-correlation-request-id": [
- "31ee5521-c4cf-410d-939c-1daee77db9d8"
+ "30cf1712-c142-41e4-831f-20e049481a57"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201539Z:31ee5521-c4cf-410d-939c-1daee77db9d8"
+ "WESTUS2:20171222T193452Z:30cf1712-c142-41e4-831f-20e049481a57"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -907,17 +1035,17 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake26323?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MzIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake28809?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake26323.azuredatalakestore.net\",\r\n \"accountId\": \"71d9be83-fde0-400c-aed7-afcdd4cde262\",\r\n \"creationTime\": \"2017-06-09T20:15:41.3235168Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:15:41.3235168Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake26323\",\r\n \"name\": \"testdatalake26323\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake28809.azuredatalakestore.net\",\r\n \"accountId\": \"3d5a22a0-c39c-43cd-82c4-5bbb01828572\",\r\n \"creationTime\": \"2017-12-22T19:34:54.1532868Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:34:54.1532868Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake28809\",\r\n \"name\": \"testdatalake28809\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -932,7 +1060,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:16:11 GMT"
+ "Fri, 22 Dec 2017 19:35:26 GMT"
],
"Pragma": [
"no-cache"
@@ -944,7 +1072,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "2b2d89e4-4426-42da-945a-4a2ddd348267"
+ "86888f3c-d4f0-455e-9922-9d5dec2f7d03"
],
"X-Content-Type-Options": [
"nosniff"
@@ -959,10 +1087,10 @@
"14997"
],
"x-ms-correlation-request-id": [
- "06e3a827-c74d-48f3-a80f-071519d79e5e"
+ "d665a568-afeb-4e22-9f29-5743c1dfb76c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201612Z:06e3a827-c74d-48f3-a80f-071519d79e5e"
+ "WESTUS2:20171222T193527Z:d665a568-afeb-4e22-9f29-5743c1dfb76c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -971,23 +1099,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake26323?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MzIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake28809?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "73d1551e-bc69-4856-82ca-80fd538d55ec"
+ "ad71bfe1-0e01-476a-8807-844b1d087fad"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake26323.azuredatalakestore.net\",\r\n \"accountId\": \"71d9be83-fde0-400c-aed7-afcdd4cde262\",\r\n \"creationTime\": \"2017-06-09T20:15:41.3235168Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:15:41.3235168Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake26323\",\r\n \"name\": \"testdatalake26323\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake28809.azuredatalakestore.net\",\r\n \"accountId\": \"3d5a22a0-c39c-43cd-82c4-5bbb01828572\",\r\n \"creationTime\": \"2017-12-22T19:34:54.1532868Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:34:54.1532868Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake28809\",\r\n \"name\": \"testdatalake28809\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -1002,7 +1130,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:16:11 GMT"
+ "Fri, 22 Dec 2017 19:35:28 GMT"
],
"Pragma": [
"no-cache"
@@ -1014,7 +1142,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "ab20880c-a49e-40fb-8462-bb59698d960a"
+ "d4d64ebb-5c3a-4eb2-9bb7-af6754b14b30"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1026,13 +1154,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14995"
],
"x-ms-correlation-request-id": [
- "667bdfe0-b277-4536-adfa-216f50fa5457"
+ "b7ce27e1-7c46-4b85-aede-bd0f3dcf826b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201612Z:667bdfe0-b277-4536-adfa-216f50fa5457"
+ "WESTUS2:20171222T193528Z:b7ce27e1-7c46-4b85-aede-bd0f3dcf826b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1041,8 +1169,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake26323?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MzIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake28809?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
@@ -1053,20 +1181,20 @@
"31"
],
"x-ms-client-request-id": [
- "40487d52-333a-4586-ad73-fadd2d743253"
+ "0058da2a-aa14-4f10-b8a6-f759d428dca8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"71d9be83-fde0-400c-aed7-afcdd4cde262\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake26323\",\r\n \"name\": \"testdatalake26323\",\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 \"accountId\": \"3d5a22a0-c39c-43cd-82c4-5bbb01828572\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake28809\",\r\n \"name\": \"testdatalake28809\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "421"
+ "365"
],
"Content-Type": [
"application/json"
@@ -1081,13 +1209,13 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:15:40 GMT"
+ "Fri, 22 Dec 2017 19:34:54 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba17104/providers/Microsoft.DataLakeStore/accounts/testdatalake26323/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba15635/providers/Microsoft.DataLakeStore/accounts/testdatalake28809/operationresults/0?api-version=2016-11-01"
],
"Retry-After": [
"10"
@@ -1096,10 +1224,10 @@
"Microsoft-IIS/8.5"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/71d9be83-fde0-400c-aed7-afcdd4cde2620?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3d5a22a0-c39c-43cd-82c4-5bbb018285720?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "6d34daf5-a98a-4071-837d-fb3bee15c8ef"
+ "3147eb22-4ea6-40dd-94ba-c9a93c97ebb5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1111,13 +1239,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1199"
],
"x-ms-correlation-request-id": [
- "60949420-642a-4184-adb8-d52071353d2b"
+ "9005b113-0c05-451d-a086-e7a554bad953"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201541Z:60949420-642a-4184-adb8-d52071353d2b"
+ "WESTUS2:20171222T193454Z:9005b113-0c05-451d-a086-e7a554bad953"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1126,13 +1254,141 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/71d9be83-fde0-400c-aed7-afcdd4cde2620?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzcxZDliZTgzLWZkZTAtNDAwYy1hZWQ3LWFmY2RkNGNkZTI2MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3d5a22a0-c39c-43cd-82c4-5bbb018285720?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzNkNWEyMmEwLWMzOWMtNDNjZC04MmM0LTViYmIwMTgyODU3MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:35:04 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "da1c39e8-2bda-4489-8093-51405d57c8f5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "x-ms-correlation-request-id": [
+ "d75bddbb-d95e-4509-a3cf-8e28821fcfaa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T193504Z:d75bddbb-d95e-4509-a3cf-8e28821fcfaa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3d5a22a0-c39c-43cd-82c4-5bbb018285720?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzNkNWEyMmEwLWMzOWMtNDNjZC04MmM0LTViYmIwMTgyODU3MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:35:15 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "90796be1-f6bd-482d-939d-283b98105272"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14988"
+ ],
+ "x-ms-correlation-request-id": [
+ "67bbd59b-5a45-45b5-881d-d5b137620a61"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T193515Z:67bbd59b-5a45-45b5-881d-d5b137620a61"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3d5a22a0-c39c-43cd-82c4-5bbb018285720?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzNkNWEyMmEwLWMzOWMtNDNjZC04MmM0LTViYmIwMTgyODU3MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
@@ -1151,7 +1407,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:16:11 GMT"
+ "Fri, 22 Dec 2017 19:35:25 GMT"
],
"Pragma": [
"no-cache"
@@ -1163,7 +1419,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "e9969c48-27ff-45a0-b26c-5936a2e94c8c"
+ "3cc315ee-a8c2-435a-9347-cc94b872f5bb"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1175,13 +1431,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14996"
],
"x-ms-correlation-request-id": [
- "87bc71d9-a21b-45c1-94c1-7795b796835e"
+ "8aca1500-9918-4c32-a929-1afedf64b535"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T201611Z:87bc71d9-a21b-45c1-94c1-7795b796835e"
+ "WESTUS2:20171222T193526Z:8aca1500-9918-4c32-a929-1afedf64b535"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1190,10 +1446,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeAnalytics/accounts/adla016288?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE2Mjg4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeAnalytics/accounts/adla012280?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDEyMjgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake11354\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake11354\"\r\n }\r\n ],\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule14790\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18741\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18741\"\r\n }\r\n ],\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule17936\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1202,20 +1458,20 @@
"565"
],
"x-ms-client-request-id": [
- "486dcd0d-0dd1-4827-ac00-4caa100ac9b7"
+ "7e4211eb-53d0-49d9-81d8-c2bf9114e240"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule14790\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake11354\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake11354\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"ab058e4b-65dd-4ad9-95ab-fa8898bd1cb6\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeAnalytics/accounts/adla016288\",\r\n \"name\": \"adla016288\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule17936\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18741\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18741\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"b7fdac68-4df9-485f-9b80-c460b18f8bc6\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeAnalytics/accounts/adla012280\",\r\n \"name\": \"adla012280\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "743"
+ "687"
],
"Content-Type": [
"application/json"
@@ -1230,13 +1486,13 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:16:14 GMT"
+ "Fri, 22 Dec 2017 19:35:33 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba17104/providers/Microsoft.DataLakeAnalytics/accounts/adla016288/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba15635/providers/Microsoft.DataLakeAnalytics/accounts/adla012280/operationresults/0?api-version=2016-11-01"
],
"Retry-After": [
"10"
@@ -1245,10 +1501,10 @@
"Microsoft-IIS/8.5"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/ab058e4b-65dd-4ad9-95ab-fa8898bd1cb60?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b7fdac68-4df9-485f-9b80-c460b18f8bc60?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "476e9eb8-6750-4e22-92c7-32c9ea4a7196"
+ "acc45e46-c874-4747-8212-a18ca97d0455"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1263,10 +1519,10 @@
"1199"
],
"x-ms-correlation-request-id": [
- "48dc1fa3-7bb0-4fa1-93fc-e7dd584fd2aa"
+ "bc0a1ad6-fed9-4b74-aff7-75859a2c90ad"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T201614Z:48dc1fa3-7bb0-4fa1-93fc-e7dd584fd2aa"
+ "WESTUS2:20171222T193533Z:bc0a1ad6-fed9-4b74-aff7-75859a2c90ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1275,14 +1531,142 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/ab058e4b-65dd-4ad9-95ab-fa8898bd1cb60?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9hYjA1OGU0Yi02NWRkLTRhZDktOTVhYi1mYTg4OThiZDFjYjYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b7fdac68-4df9-485f-9b80-c460b18f8bc60?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iN2ZkYWM2OC00ZGY5LTQ4NWYtOWI4MC1jNDYwYjE4ZjhiYzYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:35:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "af6b36fa-4688-40c1-aa4e-d470aaca9794"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-correlation-request-id": [
+ "fed83523-c53b-424e-b498-6d57be6a9507"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T193544Z:fed83523-c53b-424e-b498-6d57be6a9507"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b7fdac68-4df9-485f-9b80-c460b18f8bc60?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iN2ZkYWM2OC00ZGY5LTQ4NWYtOWI4MC1jNDYwYjE4ZjhiYzYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:35:55 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "4895a091-adc5-4991-bc85-7f5e601cdbd2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-correlation-request-id": [
+ "1de0b0af-f8fd-4907-b969-234721fd2648"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T193555Z:1de0b0af-f8fd-4907-b969-234721fd2648"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b7fdac68-4df9-485f-9b80-c460b18f8bc60?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iN2ZkYWM2OC00ZGY5LTQ4NWYtOWI4MC1jNDYwYjE4ZjhiYzYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1300,7 +1684,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:16:45 GMT"
+ "Fri, 22 Dec 2017 19:36:05 GMT"
],
"Pragma": [
"no-cache"
@@ -1312,7 +1696,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "1edb37f1-8426-4c95-9594-ced9033e752f"
+ "b1e4aa90-bc40-495f-92eb-ac7fad4be9df"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1324,13 +1708,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14993"
],
"x-ms-correlation-request-id": [
- "2fbb3b29-c66e-436a-82f9-48dca64aa2b3"
+ "b606596f-21e3-4f15-90aa-e49614c3df97"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T201645Z:2fbb3b29-c66e-436a-82f9-48dca64aa2b3"
+ "WESTUS2:20171222T193605Z:b606596f-21e3-4f15-90aa-e49614c3df97"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1339,17 +1723,17 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeAnalytics/accounts/adla016288?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE2Mjg4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeAnalytics/accounts/adla012280?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDEyMjgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule14790\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake11354\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake11354\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 250,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adla016288.azuredatalakeanalytics.net\",\r\n \"accountId\": \"ab058e4b-65dd-4ad9-95ab-fa8898bd1cb6\",\r\n \"creationTime\": \"2017-06-09T20:16:16.497034Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:16:16.497034Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeAnalytics/accounts/adla016288\",\r\n \"name\": \"adla016288\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule17936\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18741\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18741\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adla012280.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b7fdac68-4df9-485f-9b80-c460b18f8bc6\",\r\n \"creationTime\": \"2017-12-22T19:35:34.9018158Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:35:34.9018158Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeAnalytics/accounts/adla012280\",\r\n \"name\": \"adla012280\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -1364,7 +1748,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:16:45 GMT"
+ "Fri, 22 Dec 2017 19:36:06 GMT"
],
"Pragma": [
"no-cache"
@@ -1376,7 +1760,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "f9dc5b53-fe04-41fd-873d-aea3e4294f67"
+ "23fce634-eae3-49aa-871f-ce46af1ad499"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1388,13 +1772,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14991"
],
"x-ms-correlation-request-id": [
- "e323608a-d73e-4e93-80bc-0736ae9e3554"
+ "211e60e4-78ae-4e1c-b63d-6fbb20d6b943"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T201646Z:e323608a-d73e-4e93-80bc-0736ae9e3554"
+ "WESTUS2:20171222T193606Z:211e60e4-78ae-4e1c-b63d-6fbb20d6b943"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1403,23 +1787,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeAnalytics/accounts/adla016288?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE2Mjg4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeAnalytics/accounts/adla012280?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDEyMjgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b11f8d29-32f3-4fae-b9fc-e3f93444b125"
+ "8098c682-5ef7-490f-ba82-c3bbd6f241ac"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule14790\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake11354\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake11354\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 250,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adla016288.azuredatalakeanalytics.net\",\r\n \"accountId\": \"ab058e4b-65dd-4ad9-95ab-fa8898bd1cb6\",\r\n \"creationTime\": \"2017-06-09T20:16:16.497034Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:16:16.497034Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeAnalytics/accounts/adla016288\",\r\n \"name\": \"adla016288\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule17936\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18741\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18741\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adla012280.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b7fdac68-4df9-485f-9b80-c460b18f8bc6\",\r\n \"creationTime\": \"2017-12-22T19:35:34.9018158Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:35:34.9018158Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeAnalytics/accounts/adla012280\",\r\n \"name\": \"adla012280\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -1434,7 +1818,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:16:45 GMT"
+ "Fri, 22 Dec 2017 19:36:06 GMT"
],
"Pragma": [
"no-cache"
@@ -1446,7 +1830,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "a3f42e4f-3521-426d-bb83-d16d576d753b"
+ "b16e0baa-70db-479d-ae17-4bfa99ec2a38"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1458,13 +1842,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14995"
],
"x-ms-correlation-request-id": [
- "82ef4d43-1182-41bd-a7d6-1fcc20e2f92f"
+ "7e9926ad-09c3-4aa4-bec5-34e3bf595c1c"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T201646Z:82ef4d43-1182-41bd-a7d6-1fcc20e2f92f"
+ "WESTUS2:20171222T193607Z:7e9926ad-09c3-4aa4-bec5-34e3bf595c1c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1473,23 +1857,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeAnalytics/accounts/adla016288/firewallRules/firerule14790?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE2Mjg4L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNDc5MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeAnalytics/accounts/adla012280/firewallRules/firerule17936?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDEyMjgwL2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzkzNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "858ff62a-b390-43f6-83d4-14a183cc5157"
+ "5530d80b-2850-4a05-b91f-a3e78fc35cab"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeAnalytics/accounts/adla016288/firewallRules/firerule14790\",\r\n \"name\": \"firerule14790\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeAnalytics/accounts/adla012280/firewallRules/firerule17936\",\r\n \"name\": \"firerule17936\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -1504,7 +1888,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:16:46 GMT"
+ "Fri, 22 Dec 2017 19:36:07 GMT"
],
"Pragma": [
"no-cache"
@@ -1516,7 +1900,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "05cbbf98-708f-4232-b2a3-d77cb8a97df4"
+ "db879241-ef3f-47d1-b452-ab1189bb6f17"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1528,13 +1912,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14992"
],
"x-ms-correlation-request-id": [
- "cd4ea552-8aee-4b04-99ec-9ea396b736a8"
+ "e3414edc-0ac5-4af4-8f41-e030358647ff"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T201647Z:cd4ea552-8aee-4b04-99ec-9ea396b736a8"
+ "WESTUS2:20171222T193607Z:e3414edc-0ac5-4af4-8f41-e030358647ff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1543,20 +1927,20 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeAnalytics/accounts/adla016288/firewallRules/firerule14790?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE2Mjg4L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNDc5MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeAnalytics/accounts/adla012280/firewallRules/firerule17936?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDEyMjgwL2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzkzNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "655914eb-039f-4b0d-a7b0-718c69decba4"
+ "0378edf9-685e-4bc8-bd87-078232de57e5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NestedResourceNotFound\",\r\n \"message\": \"Nested resource does not exist.\"\r\n }\r\n}",
@@ -1577,7 +1961,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:16:49 GMT"
+ "Fri, 22 Dec 2017 19:36:10 GMT"
],
"Pragma": [
"no-cache"
@@ -1586,7 +1970,7 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "40cf5496-c258-4d34-8632-c1ef501b59ba"
+ "846f12ae-de89-4f5a-ac07-f4c4c14b3ad3"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1598,13 +1982,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14995"
],
"x-ms-correlation-request-id": [
- "a6e049ee-e2eb-48a8-a75a-e96ce49bfb1f"
+ "2cf8ae01-7681-4e2a-ad6f-dfa867eb0ed8"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T201650Z:a6e049ee-e2eb-48a8-a75a-e96ce49bfb1f"
+ "WESTUS2:20171222T193611Z:2cf8ae01-7681-4e2a-ad6f-dfa867eb0ed8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1613,10 +1997,10 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeAnalytics/accounts/adla016288/firewallRules/firerule14790?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE2Mjg4L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNDc5MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeAnalytics/accounts/adla012280/firewallRules/firerule17936?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDEyMjgwL2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzkzNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"name\": \"firerule14790\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"name\": \"firerule17936\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1625,17 +2009,17 @@
"129"
],
"x-ms-client-request-id": [
- "8cfa6645-9376-41c7-b2e2-086a8558a070"
+ "a5397c27-81a5-48e3-aaf3-1a348a6ddeb3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeAnalytics/accounts/adla016288/firewallRules/firerule14790\",\r\n \"name\": \"firerule14790\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeAnalytics/accounts/adla012280/firewallRules/firerule17936\",\r\n \"name\": \"firerule17936\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -1650,7 +2034,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:16:47 GMT"
+ "Fri, 22 Dec 2017 19:36:08 GMT"
],
"Pragma": [
"no-cache"
@@ -1662,7 +2046,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "3664902f-1b6c-4fa9-8c6f-e8fb9e96ef50"
+ "0e40bea6-f112-4770-b486-f366d5b99ec0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1677,10 +2061,10 @@
"1199"
],
"x-ms-correlation-request-id": [
- "06c2058b-bf18-44ce-9fdd-7e4c7218a218"
+ "2e935b2a-6287-49c5-b8b8-53c82981553d"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T201648Z:06c2058b-bf18-44ce-9fdd-7e4c7218a218"
+ "WESTUS2:20171222T193608Z:2e935b2a-6287-49c5-b8b8-53c82981553d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1689,8 +2073,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeAnalytics/accounts/adla016288/firewallRules/firerule14790?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE2Mjg4L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNDc5MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeAnalytics/accounts/adla012280/firewallRules/firerule17936?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDEyMjgwL2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzkzNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\"\r\n }\r\n}",
"RequestHeaders": {
@@ -1701,17 +2085,17 @@
"63"
],
"x-ms-client-request-id": [
- "e4d5dfd0-92cc-4562-bdc3-a61ed90f9df7"
+ "27c904e0-c511-4d7c-a09c-5c572fb6adcc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeAnalytics/accounts/adla016288/firewallRules/firerule14790\",\r\n \"name\": \"firerule14790\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeAnalytics/accounts/adla012280/firewallRules/firerule17936\",\r\n \"name\": \"firerule17936\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -1726,7 +2110,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:16:48 GMT"
+ "Fri, 22 Dec 2017 19:36:09 GMT"
],
"Pragma": [
"no-cache"
@@ -1738,7 +2122,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "84750a0b-8056-435e-bcf7-89f74299f207"
+ "024fb70d-b9ae-4e77-a0d5-767517e4e96b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1750,13 +2134,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "0f78478a-d45d-419f-8c8d-e2a572522149"
+ "4862fb20-433f-436a-b802-1ad371afd123"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T201648Z:0f78478a-d45d-419f-8c8d-e2a572522149"
+ "WESTUS2:20171222T193609Z:4862fb20-433f-436a-b802-1ad371afd123"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1765,20 +2149,20 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba17104/providers/Microsoft.DataLakeAnalytics/accounts/adla016288/firewallRules/firerule14790?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE2Mjg4L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNDc5MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15635/providers/Microsoft.DataLakeAnalytics/accounts/adla012280/firewallRules/firerule17936?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MzUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDEyMjgwL2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzkzNj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1364e3be-af5c-4bd4-a4fc-242d369efdec"
+ "5e89b612-d81d-4228-99de-f01e7a929c9b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
"ResponseBody": "",
@@ -1796,7 +2180,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:16:49 GMT"
+ "Fri, 22 Dec 2017 19:36:09 GMT"
],
"Pragma": [
"no-cache"
@@ -1805,7 +2189,7 @@
"Microsoft-IIS/8.5"
],
"x-ms-request-id": [
- "0661db2a-a7f3-4cb1-9387-278977ca61e0"
+ "4d377ac9-a17d-4018-a36b-607483f8b9ad"
],
"X-AspNet-Version": [
"4.0.30319"
@@ -1817,10 +2201,10 @@
"1199"
],
"x-ms-correlation-request-id": [
- "c8964c27-7629-4ba0-b9ab-1e4e6ae4fa0d"
+ "3b266e27-42bf-411f-bdaa-952786431a5f"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T201649Z:c8964c27-7629-4ba0-b9ab-1e4e6ae4fa0d"
+ "WESTUS2:20171222T193610Z:3b266e27-42bf-411f-bdaa-952786431a5f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1831,28 +2215,28 @@
],
"Names": {
".ctor": [
- "rgaba17104",
- "testaba13339",
- "testaba21943",
- "teststorage12515",
- "testdatalake11354",
- "testdatalake26323",
- "testazureblob15409",
- "testdb12869",
- "testtbl11241",
- "testtvf16725",
- "testproc15702",
- "testview12010",
- "testcred14735",
- "testsecret1124",
- "testsecretpwd11836"
+ "rgaba15635",
+ "testaba15421",
+ "testaba24435",
+ "teststorage17935",
+ "testdatalake18741",
+ "testdatalake28809",
+ "testazureblob15254",
+ "testdb13929",
+ "testtbl18095",
+ "testtvf16687",
+ "testproc16683",
+ "testview13513",
+ "testcred19085",
+ "testsecret12696",
+ "testsecretpwd11787"
],
"FirewallTest": [
- "firerule14790",
- "adla016288"
+ "firerule17936",
+ "adla012280"
]
},
"Variables": {
- "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db"
}
}
\ No newline at end of file
diff --git a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/CredentialCRUDTest.json b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/CredentialCRUDTest.json
index f47d429d472a..aea1266729fe 100644
--- a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/CredentialCRUDTest.json
+++ b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/CredentialCRUDTest.json
@@ -1,23 +1,23 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "90c3f8b4-b4ba-4687-b398-78df0c270859"
+ "b21a146a-4858-466d-827d-a16cd55b7d3a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "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 \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -29,7 +29,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:52:55 GMT"
+ "Fri, 22 Dec 2017 21:45:28 GMT"
],
"Pragma": [
"no-cache"
@@ -41,16 +41,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-request-id": [
- "1609b206-a03c-49d1-9ad0-d0803a9e9dfa"
+ "dde87a27-b926-4297-b11e-2a3694ed4f35"
],
"x-ms-correlation-request-id": [
- "1609b206-a03c-49d1-9ad0-d0803a9e9dfa"
+ "dde87a27-b926-4297-b11e-2a3694ed4f35"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205256Z:1609b206-a03c-49d1-9ad0-d0803a9e9dfa"
+ "WESTUS2:20171222T214529Z:dde87a27-b926-4297-b11e-2a3694ed4f35"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -59,23 +59,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "21e1a3bf-28fc-4508-9eb3-570912c27d9a"
+ "1481b179-95d9-42b1-99d4-7e1ae24e82ed"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "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 \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -87,7 +87,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:52:55 GMT"
+ "Fri, 22 Dec 2017 21:45:28 GMT"
],
"Pragma": [
"no-cache"
@@ -96,16 +96,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14995"
],
"x-ms-request-id": [
- "a8cb2a80-f03d-45f7-89e8-679c193c2e97"
+ "c887b592-e3ae-4470-b6f1-efdc1b33d938"
],
"x-ms-correlation-request-id": [
- "a8cb2a80-f03d-45f7-89e8-679c193c2e97"
+ "c887b592-e3ae-4470-b6f1-efdc1b33d938"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205256Z:a8cb2a80-f03d-45f7-89e8-679c193c2e97"
+ "WESTUS2:20171222T214529Z:c887b592-e3ae-4470-b6f1-efdc1b33d938"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -114,23 +114,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12f36d37-1e76-4ccf-819a-2538ae085b14"
+ "4e920f61-2e82-4f46-97fb-769e3461a5fc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -142,7 +142,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:52:56 GMT"
+ "Fri, 22 Dec 2017 21:45:29 GMT"
],
"Pragma": [
"no-cache"
@@ -154,16 +154,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1198"
],
"x-ms-request-id": [
- "c2c1d4e1-8f03-4de6-952b-4d615d959147"
+ "e664d47c-4cf0-4ec5-a8b3-13343a4d7f96"
],
"x-ms-correlation-request-id": [
- "c2c1d4e1-8f03-4de6-952b-4d615d959147"
+ "e664d47c-4cf0-4ec5-a8b3-13343a4d7f96"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205257Z:c2c1d4e1-8f03-4de6-952b-4d615d959147"
+ "WESTUS2:20171222T214530Z:e664d47c-4cf0-4ec5-a8b3-13343a4d7f96"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -172,23 +172,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cb12726f-4602-4c45-baf5-509b486f2d6c"
+ "9ef8b8bf-4ffe-43e3-9ac4-7e8a349206fc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -200,7 +200,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:52:56 GMT"
+ "Fri, 22 Dec 2017 21:45:29 GMT"
],
"Pragma": [
"no-cache"
@@ -209,16 +209,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14994"
],
"x-ms-request-id": [
- "57666f7c-2d45-4b0e-9adf-7ae135e5b60a"
+ "e7030c39-1a24-449a-a02d-432b1835c82d"
],
"x-ms-correlation-request-id": [
- "57666f7c-2d45-4b0e-9adf-7ae135e5b60a"
+ "e7030c39-1a24-449a-a02d-432b1835c82d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205257Z:57666f7c-2d45-4b0e-9adf-7ae135e5b60a"
+ "WESTUS2:20171222T214530Z:e7030c39-1a24-449a-a02d-432b1835c82d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -227,23 +227,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "287ac5bd-eb93-409e-83a1-c2f19de9ea10"
+ "849d9192-bb4b-4559-a375-1e39684f4065"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -255,7 +255,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:52:58 GMT"
+ "Fri, 22 Dec 2017 21:45:30 GMT"
],
"Pragma": [
"no-cache"
@@ -267,16 +267,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1197"
],
"x-ms-request-id": [
- "de7f006f-0f3f-4060-9067-a5aced5a0552"
+ "554339a6-135b-4fcc-9871-e0a2aa00353c"
],
"x-ms-correlation-request-id": [
- "de7f006f-0f3f-4060-9067-a5aced5a0552"
+ "554339a6-135b-4fcc-9871-e0a2aa00353c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205259Z:de7f006f-0f3f-4060-9067-a5aced5a0552"
+ "WESTUS2:20171222T214531Z:554339a6-135b-4fcc-9871-e0a2aa00353c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -285,23 +285,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b5af4b28-68ae-4d74-b6e8-bbbc435da43e"
+ "363352dd-854b-4473-bd0c-97a94431810c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -313,7 +313,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:52:58 GMT"
+ "Fri, 22 Dec 2017 21:45:30 GMT"
],
"Pragma": [
"no-cache"
@@ -322,16 +322,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14993"
],
"x-ms-request-id": [
- "37281524-2a60-4574-b98d-6946f664f146"
+ "1b884a01-cd45-4732-b5a6-d441c5d001c7"
],
"x-ms-correlation-request-id": [
- "37281524-2a60-4574-b98d-6946f664f146"
+ "1b884a01-cd45-4732-b5a6-d441c5d001c7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205259Z:37281524-2a60-4574-b98d-6946f664f146"
+ "WESTUS2:20171222T214531Z:1b884a01-cd45-4732-b5a6-d441c5d001c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -340,26 +340,26 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15664?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTU2NjQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba1551?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTU1MT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8b38778d-51e1-43b0-ba02-bf6cd53f3d73"
+ "4a924a57-8b33-410f-b0bf-8c09f05440b8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba15664' could not be found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba1551' could not be found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "102"
+ "101"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -371,7 +371,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:52:58 GMT"
+ "Fri, 22 Dec 2017 21:45:30 GMT"
],
"Pragma": [
"no-cache"
@@ -380,16 +380,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14992"
],
"x-ms-request-id": [
- "6e1dd03a-c68b-46da-8482-3067e3839d44"
+ "d64a0d8d-a348-43d9-bea5-102e05a6a06f"
],
"x-ms-correlation-request-id": [
- "6e1dd03a-c68b-46da-8482-3067e3839d44"
+ "d64a0d8d-a348-43d9-bea5-102e05a6a06f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205259Z:6e1dd03a-c68b-46da-8482-3067e3839d44"
+ "WESTUS2:20171222T214531Z:d64a0d8d-a348-43d9-bea5-102e05a6a06f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -398,23 +398,23 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15664?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTU2NjQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba1551?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTU1MT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "375ba301-be04-4c37-adf1-78dfddf6cdaf"
+ "0b9a0e51-32ff-47ca-aee4-446245373f40"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664\",\r\n \"name\": \"rgaba15664\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551\",\r\n \"name\": \"rgaba1551\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -426,7 +426,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:53:00 GMT"
+ "Fri, 22 Dec 2017 21:45:32 GMT"
],
"Pragma": [
"no-cache"
@@ -435,16 +435,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14991"
],
"x-ms-request-id": [
- "b67ceb15-3a5c-4b44-9e9d-028ff510d98c"
+ "b0942833-92d9-4a1d-b698-fcbd4fa14765"
],
"x-ms-correlation-request-id": [
- "b67ceb15-3a5c-4b44-9e9d-028ff510d98c"
+ "b0942833-92d9-4a1d-b698-fcbd4fa14765"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205300Z:b67ceb15-3a5c-4b44-9e9d-028ff510d98c"
+ "WESTUS2:20171222T214532Z:b0942833-92d9-4a1d-b698-fcbd4fa14765"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -453,8 +453,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15664?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTU2NjQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba1551?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTU1MT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
@@ -465,20 +465,20 @@
"31"
],
"x-ms-client-request-id": [
- "3fa82188-a120-43e3-a4ca-90bab0732f0e"
+ "4586fec1-cf20-4717-bb33-d7f95d370034"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664\",\r\n \"name\": \"rgaba15664\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551\",\r\n \"name\": \"rgaba1551\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "174"
+ "172"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -490,22 +490,22 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:53:00 GMT"
+ "Fri, 22 Dec 2017 21:45:32 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1196"
],
"x-ms-request-id": [
- "0f05e597-823e-45b2-b677-e714583b514e"
+ "f2050f69-3e6b-46f6-a8e9-7213e53f4858"
],
"x-ms-correlation-request-id": [
- "0f05e597-823e-45b2-b677-e714583b514e"
+ "f2050f69-3e6b-46f6-a8e9-7213e53f4858"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205300Z:0f05e597-823e-45b2-b677-e714583b514e"
+ "WESTUS2:20171222T214532Z:f2050f69-3e6b-46f6-a8e9-7213e53f4858"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -514,23 +514,23 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake1959?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE5NTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake19798?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTk3OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "508f04bf-f24e-496b-a0a6-0742ed313c43"
+ "f6b1d0a4-965f-4183-85f4-60860dc05778"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake1959' under resource group 'rgaba15664' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake19798' under resource group 'rgaba1551' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"163"
@@ -545,7 +545,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:53:00 GMT"
+ "Fri, 22 Dec 2017 21:45:33 GMT"
],
"Pragma": [
"no-cache"
@@ -554,13 +554,13 @@
"gateway"
],
"x-ms-request-id": [
- "6b9a1a95-aa75-45fc-9f81-f57523b56ea7"
+ "ec2b0747-a01f-49ae-a838-2358d87d16ff"
],
"x-ms-correlation-request-id": [
- "6b9a1a95-aa75-45fc-9f81-f57523b56ea7"
+ "ec2b0747-a01f-49ae-a838-2358d87d16ff"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T205301Z:6b9a1a95-aa75-45fc-9f81-f57523b56ea7"
+ "WESTUS2:20171222T214533Z:ec2b0747-a01f-49ae-a838-2358d87d16ff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -569,17 +569,17 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake1959?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE5NTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake19798?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTk3OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake1959.azuredatalakestore.net\",\r\n \"accountId\": \"85a36747-8c26-40c4-bd9a-3ba2f8642a6e\",\r\n \"creationTime\": \"2017-06-09T20:53:04.1412397Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:53:04.1412397Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake1959\",\r\n \"name\": \"testdatalake1959\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake19798.azuredatalakestore.net\",\r\n \"accountId\": \"ef459363-72d7-4ed8-b033-c5d1d902f330\",\r\n \"creationTime\": \"2017-12-22T21:45:36.8713509Z\",\r\n \"lastModifiedTime\": \"2017-12-22T21:45:36.8713509Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake19798\",\r\n \"name\": \"testdatalake19798\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -594,7 +594,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:53:33 GMT"
+ "Fri, 22 Dec 2017 21:46:07 GMT"
],
"Pragma": [
"no-cache"
@@ -606,7 +606,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "989c32d5-3460-492b-956a-b420bad59a9e"
+ "691686f7-73c7-4c0e-9df3-8d008b2e1146"
],
"X-Content-Type-Options": [
"nosniff"
@@ -618,13 +618,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14997"
],
"x-ms-correlation-request-id": [
- "d227b5fb-668a-40b2-991e-856f4ea33879"
+ "904253ba-fac8-4fc5-bcca-88ced52fc73d"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T205334Z:d227b5fb-668a-40b2-991e-856f4ea33879"
+ "WESTUS2:20171222T214608Z:904253ba-fac8-4fc5-bcca-88ced52fc73d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -633,23 +633,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake1959?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE5NTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake19798?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTk3OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "98962314-e9f1-49d8-a08b-d581f4b1e913"
+ "8aaf6320-4e76-42ef-9993-84f3d2b12009"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake1959.azuredatalakestore.net\",\r\n \"accountId\": \"85a36747-8c26-40c4-bd9a-3ba2f8642a6e\",\r\n \"creationTime\": \"2017-06-09T20:53:04.1412397Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:53:04.1412397Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake1959\",\r\n \"name\": \"testdatalake1959\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake19798.azuredatalakestore.net\",\r\n \"accountId\": \"ef459363-72d7-4ed8-b033-c5d1d902f330\",\r\n \"creationTime\": \"2017-12-22T21:45:36.8713509Z\",\r\n \"lastModifiedTime\": \"2017-12-22T21:45:36.8713509Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake19798\",\r\n \"name\": \"testdatalake19798\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -664,7 +664,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:53:34 GMT"
+ "Fri, 22 Dec 2017 21:46:08 GMT"
],
"Pragma": [
"no-cache"
@@ -676,7 +676,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "87d54845-f56c-4447-9ea0-bebb192b7128"
+ "72e29231-2277-4f66-869e-9cd1b5183fdd"
],
"X-Content-Type-Options": [
"nosniff"
@@ -688,13 +688,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14998"
],
"x-ms-correlation-request-id": [
- "47bb5007-67c0-4f93-89ae-6f18ca9be496"
+ "b87c67e1-59d0-42b4-91b0-5d37ee27461a"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T205335Z:47bb5007-67c0-4f93-89ae-6f18ca9be496"
+ "WESTUS2:20171222T214609Z:b87c67e1-59d0-42b4-91b0-5d37ee27461a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -703,23 +703,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake1959?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE5NTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake19798?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTk3OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "42e482ed-8261-42f8-aed3-5d9941fead90"
+ "70d1de30-515e-4848-bf03-25e82a14bf5c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake1959.azuredatalakestore.net\",\r\n \"accountId\": \"85a36747-8c26-40c4-bd9a-3ba2f8642a6e\",\r\n \"creationTime\": \"2017-06-09T20:53:04.1412397Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:53:04.1412397Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake1959\",\r\n \"name\": \"testdatalake1959\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake19798.azuredatalakestore.net\",\r\n \"accountId\": \"ef459363-72d7-4ed8-b033-c5d1d902f330\",\r\n \"creationTime\": \"2017-12-22T21:45:36.8713509Z\",\r\n \"lastModifiedTime\": \"2017-12-22T21:45:36.8713509Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake19798\",\r\n \"name\": \"testdatalake19798\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -734,7 +734,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:54:10 GMT"
+ "Fri, 22 Dec 2017 21:46:46 GMT"
],
"Pragma": [
"no-cache"
@@ -746,7 +746,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "e1cb7060-1acf-4d79-9f02-f2450e50e0f0"
+ "043d44b1-3a0f-45f5-bb97-44089cf14378"
],
"X-Content-Type-Options": [
"nosniff"
@@ -758,13 +758,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14993"
],
"x-ms-correlation-request-id": [
- "9cd592e8-58f4-411f-ba99-c2b4bc88c846"
+ "fd453ec9-6de3-48b2-b7b2-0886f1ebc6aa"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T205410Z:9cd592e8-58f4-411f-ba99-c2b4bc88c846"
+ "WESTUS2:20171222T214647Z:fd453ec9-6de3-48b2-b7b2-0886f1ebc6aa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -773,8 +773,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake1959?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE5NTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake19798?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTk3OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
@@ -785,20 +785,20 @@
"31"
],
"x-ms-client-request-id": [
- "26b7d2e3-dd52-4f2a-8074-1f85769e9a4e"
+ "79c5bf7e-2695-40b4-b213-4673fcf8da55"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"85a36747-8c26-40c4-bd9a-3ba2f8642a6e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake1959\",\r\n \"name\": \"testdatalake1959\",\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 \"accountId\": \"ef459363-72d7-4ed8-b033-c5d1d902f330\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake19798\",\r\n \"name\": \"testdatalake19798\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "419"
+ "364"
],
"Content-Type": [
"application/json"
@@ -813,13 +813,13 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:53:02 GMT"
+ "Fri, 22 Dec 2017 21:45:35 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake1959/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake19798/operationresults/0?api-version=2016-11-01"
],
"Retry-After": [
"10"
@@ -828,10 +828,10 @@
"Microsoft-IIS/8.5"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/85a36747-8c26-40c4-bd9a-3ba2f8642a6e0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ef459363-72d7-4ed8-b033-c5d1d902f3300?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "e15e8f9f-bc1f-494d-9417-3af9270ee867"
+ "29163bc8-127f-42a4-8fec-53e8724f8dab"
],
"X-Content-Type-Options": [
"nosniff"
@@ -843,13 +843,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1199"
],
"x-ms-correlation-request-id": [
- "1aef31db-9edb-4776-93c6-0f9846f89830"
+ "e03ebe00-43f8-4065-b368-be7601426def"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T205303Z:1aef31db-9edb-4776-93c6-0f9846f89830"
+ "WESTUS2:20171222T214535Z:e03ebe00-43f8-4065-b368-be7601426def"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -858,13 +858,141 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/85a36747-8c26-40c4-bd9a-3ba2f8642a6e0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzg1YTM2NzQ3LThjMjYtNDBjNC1iZDlhLTNiYTJmODY0MmE2ZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ef459363-72d7-4ed8-b033-c5d1d902f3300?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2VmNDU5MzYzLTcyZDctNGVkOC1iMDMzLWM1ZDFkOTAyZjMzMDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 21:45:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "fccae6b2-e3e5-469e-a2b8-18f4fef50d97"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "25125d40-3340-4a60-b743-9db759ce93a0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T214546Z:25125d40-3340-4a60-b743-9db759ce93a0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ef459363-72d7-4ed8-b033-c5d1d902f3300?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2VmNDU5MzYzLTcyZDctNGVkOC1iMDMzLWM1ZDFkOTAyZjMzMDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 21:45:56 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "337c19dc-3fcd-4cfe-9255-620ea7bd0567"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c22d6c0-26d8-46dd-95f5-f224724a4cd0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T214557Z:0c22d6c0-26d8-46dd-95f5-f224724a4cd0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ef459363-72d7-4ed8-b033-c5d1d902f3300?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2VmNDU5MzYzLTcyZDctNGVkOC1iMDMzLWM1ZDFkOTAyZjMzMDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
@@ -883,7 +1011,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:53:33 GMT"
+ "Fri, 22 Dec 2017 21:46:07 GMT"
],
"Pragma": [
"no-cache"
@@ -895,7 +1023,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "12b69393-88f5-435a-a63e-fda258ac1c46"
+ "a283328e-be44-4f2f-95ca-9bfdb228f5bb"
],
"X-Content-Type-Options": [
"nosniff"
@@ -907,13 +1035,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14994"
],
"x-ms-correlation-request-id": [
- "d15d3b02-d8cc-4cc6-935b-5c6264325009"
+ "c6fa470d-bd72-44b2-87f4-2b56d5ce2fa8"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T205334Z:d15d3b02-d8cc-4cc6-935b-5c6264325009"
+ "WESTUS2:20171222T214607Z:c6fa470d-bd72-44b2-87f4-2b56d5ce2fa8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -922,26 +1050,26 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake27679?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI3Njc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake27622?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjc2MjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "230ee58b-cb43-48d4-9663-a0b954a12c3c"
+ "5637820f-7298-464a-9371-0daf8fbd405c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake27679' under resource group 'rgaba15664' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake27622' under resource group 'rgaba1551' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "164"
+ "163"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -953,7 +1081,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Jun 2017 20:53:35 GMT"
+ "Fri, 22 Dec 2017 21:46:10 GMT"
],
"Pragma": [
"no-cache"
@@ -962,13 +1090,13 @@
"gateway"
],
"x-ms-request-id": [
- "38683822-92e4-427d-8ff1-3a62ee7322ee"
+ "579d2ca8-f480-4bcf-83a6-0f497441d972"
],
"x-ms-correlation-request-id": [
- "38683822-92e4-427d-8ff1-3a62ee7322ee"
+ "579d2ca8-f480-4bcf-83a6-0f497441d972"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T205336Z:38683822-92e4-427d-8ff1-3a62ee7322ee"
+ "WESTUS2:20171222T214610Z:579d2ca8-f480-4bcf-83a6-0f497441d972"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -977,17 +1105,17 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake27679?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI3Njc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake27622?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjc2MjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake27679.azuredatalakestore.net\",\r\n \"accountId\": \"636f84b6-5e02-4dd9-825f-4a267185f308\",\r\n \"creationTime\": \"2017-06-09T20:53:37.994377Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:53:37.994377Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake27679\",\r\n \"name\": \"testdatalake27679\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake27622.azuredatalakestore.net\",\r\n \"accountId\": \"f02d98dc-9752-4905-8eba-ed97d25798f9\",\r\n \"creationTime\": \"2017-12-22T21:46:14.5462542Z\",\r\n \"lastModifiedTime\": \"2017-12-22T21:46:14.5462542Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake27622\",\r\n \"name\": \"testdatalake27622\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -1002,7 +1130,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:54:09 GMT"
+ "Fri, 22 Dec 2017 21:46:45 GMT"
],
"Pragma": [
"no-cache"
@@ -1014,7 +1142,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "6753646c-e33f-46c1-873d-1f119bfb3195"
+ "b0d27669-6135-4ee6-b616-6a3a2fe60d44"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1029,10 +1157,10 @@
"14999"
],
"x-ms-correlation-request-id": [
- "e0e5ae45-8456-44dc-a6c0-023fa4ea7ef8"
+ "7b67bd97-f1d1-41b4-8b5d-b2c9ee9c11ae"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T205409Z:e0e5ae45-8456-44dc-a6c0-023fa4ea7ef8"
+ "WESTUS2:20171222T214645Z:7b67bd97-f1d1-41b4-8b5d-b2c9ee9c11ae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1041,23 +1169,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake27679?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI3Njc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake27622?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjc2MjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "473de77b-9a82-48f3-8074-1008c6e62f45"
+ "67fd67f5-9005-4ded-9444-ff3dc3a1f17c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake27679.azuredatalakestore.net\",\r\n \"accountId\": \"636f84b6-5e02-4dd9-825f-4a267185f308\",\r\n \"creationTime\": \"2017-06-09T20:53:37.994377Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:53:37.994377Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake27679\",\r\n \"name\": \"testdatalake27679\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake27622.azuredatalakestore.net\",\r\n \"accountId\": \"f02d98dc-9752-4905-8eba-ed97d25798f9\",\r\n \"creationTime\": \"2017-12-22T21:46:14.5462542Z\",\r\n \"lastModifiedTime\": \"2017-12-22T21:46:14.5462542Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake27622\",\r\n \"name\": \"testdatalake27622\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -1072,7 +1200,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:54:08 GMT"
+ "Fri, 22 Dec 2017 21:46:45 GMT"
],
"Pragma": [
"no-cache"
@@ -1084,7 +1212,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "eaf99fbf-21ff-4dc6-85ea-00f62bc5463b"
+ "c26f6a32-cab7-4f53-9b67-87352eebb0c5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1096,13 +1224,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14997"
],
"x-ms-correlation-request-id": [
- "40cf9ffa-fed6-48ed-b4ff-5d0f76290621"
+ "bf6f3a5d-fb56-4bbb-8017-302bb9778efb"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T205409Z:40cf9ffa-fed6-48ed-b4ff-5d0f76290621"
+ "WESTUS2:20171222T214646Z:bf6f3a5d-fb56-4bbb-8017-302bb9778efb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1111,8 +1239,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake27679?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI3Njc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake27622?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjc2MjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
@@ -1123,20 +1251,20 @@
"31"
],
"x-ms-client-request-id": [
- "db3ad50d-759d-4916-8fa6-5956d13cc8de"
+ "156181e3-7b5c-44d5-9c73-a664201d29ba"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"636f84b6-5e02-4dd9-825f-4a267185f308\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake27679\",\r\n \"name\": \"testdatalake27679\",\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 \"accountId\": \"f02d98dc-9752-4905-8eba-ed97d25798f9\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake27622\",\r\n \"name\": \"testdatalake27622\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "421"
+ "364"
],
"Content-Type": [
"application/json"
@@ -1151,13 +1279,13 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:53:37 GMT"
+ "Fri, 22 Dec 2017 21:46:12 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15664/providers/Microsoft.DataLakeStore/accounts/testdatalake27679/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba1551/providers/Microsoft.DataLakeStore/accounts/testdatalake27622/operationresults/0?api-version=2016-11-01"
],
"Retry-After": [
"10"
@@ -1166,10 +1294,10 @@
"Microsoft-IIS/8.5"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/636f84b6-5e02-4dd9-825f-4a267185f3080?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f02d98dc-9752-4905-8eba-ed97d25798f90?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "90d1bba8-a01e-48f1-adb4-b1c24db025e7"
+ "1745539b-398c-44fd-b446-0ce8d704a2d3"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1181,13 +1309,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1199"
],
"x-ms-correlation-request-id": [
- "ee33c53c-3f53-434b-a2d7-ea9396cf8058"
+ "fc8bf33c-594a-4ce8-92e4-52eeef0bf0a5"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T205337Z:ee33c53c-3f53-434b-a2d7-ea9396cf8058"
+ "WESTUS2:20171222T214612Z:fc8bf33c-594a-4ce8-92e4-52eeef0bf0a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1196,13 +1324,141 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/636f84b6-5e02-4dd9-825f-4a267185f3080?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzYzNmY4NGI2LTVlMDItNGRkOS04MjVmLTRhMjY3MTg1ZjMwODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f02d98dc-9752-4905-8eba-ed97d25798f90?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2YwMmQ5OGRjLTk3NTItNDkwNS04ZWJhLWVkOTdkMjU3OThmOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 21:46:23 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "0efc302a-f3cf-4444-8baf-c550f4b145d4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "a4ccb15f-e36e-4475-ab21-0b07e9777d25"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T214623Z:a4ccb15f-e36e-4475-ab21-0b07e9777d25"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f02d98dc-9752-4905-8eba-ed97d25798f90?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2YwMmQ5OGRjLTk3NTItNDkwNS04ZWJhLWVkOTdkMjU3OThmOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 21:46:33 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "36e3fb4e-5d00-4acb-b1fb-87ffc176754f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "7fde779d-bb7d-46c1-a4fc-54b17b5c0b4b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T214634Z:7fde779d-bb7d-46c1-a4fc-54b17b5c0b4b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f02d98dc-9752-4905-8eba-ed97d25798f90?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2YwMmQ5OGRjLTk3NTItNDkwNS04ZWJhLWVkOTdkMjU3OThmOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
@@ -1221,7 +1477,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:54:08 GMT"
+ "Fri, 22 Dec 2017 21:46:44 GMT"
],
"Pragma": [
"no-cache"
@@ -1233,7 +1489,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "398adfc6-f4cb-43e6-a456-b65fbefabd10"
+ "936124ed-6fdb-4c10-9b68-201f1a84ca39"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1245,13 +1501,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14995"
],
"x-ms-correlation-request-id": [
- "bc61d824-7374-4974-be2d-519ce2d3ad4f"
+ "70945507-2a38-4c9d-97a5-1d00f20eaf02"
],
"x-ms-routing-request-id": [
- "WESTUS:20170609T205408Z:bc61d824-7374-4974-be2d-519ce2d3ad4f"
+ "WESTUS2:20171222T214644Z:70945507-2a38-4c9d-97a5-1d00f20eaf02"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1260,32 +1516,32 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeAnalytics/accounts/testaba22188?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjIxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeAnalytics/accounts/testaba24072?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3Rlc3RhYmEyNDA3Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake1959\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake1959\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake19798\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake19798\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "288"
+ "290"
],
"x-ms-client-request-id": [
- "e09ea81a-bece-4673-bb2a-6da910b9e962"
+ "897e9b9f-3a72-46e5-9d0f-6d599dca1a9d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake1959\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake1959\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"dcb23357-7c83-4f24-a4bc-d68857d9d89d\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeAnalytics/accounts/testaba22188\",\r\n \"name\": \"testaba22188\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake19798\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake19798\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"0c183280-e50a-4f8e-be7c-80237509736c\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeAnalytics/accounts/testaba24072\",\r\n \"name\": \"testaba24072\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "571"
+ "516"
],
"Content-Type": [
"application/json"
@@ -1300,13 +1556,13 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:54:12 GMT"
+ "Fri, 22 Dec 2017 21:46:53 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15664/providers/Microsoft.DataLakeAnalytics/accounts/testaba22188/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba1551/providers/Microsoft.DataLakeAnalytics/accounts/testaba24072/operationresults/0?api-version=2016-11-01"
],
"Retry-After": [
"10"
@@ -1315,10 +1571,10 @@
"Microsoft-IIS/8.5"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/dcb23357-7c83-4f24-a4bc-d68857d9d89d0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/0c183280-e50a-4f8e-be7c-80237509736c0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "0d7fbe82-696a-48b1-ab6d-d74e51f032c5"
+ "9e557b28-c554-4fd6-a8f7-006d5022dbd0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1330,13 +1586,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1195"
],
"x-ms-correlation-request-id": [
- "ea797c36-7d02-48c7-87f5-0357d827d714"
+ "f398ef0c-c535-42d0-b138-70ce95f176ec"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205412Z:ea797c36-7d02-48c7-87f5-0357d827d714"
+ "WESTUS2:20171222T214653Z:f398ef0c-c535-42d0-b138-70ce95f176ec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1345,14 +1601,142 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/dcb23357-7c83-4f24-a4bc-d68857d9d89d0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9kY2IyMzM1Ny03YzgzLTRmMjQtYTRiYy1kNjg4NTdkOWQ4OWQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/0c183280-e50a-4f8e-be7c-80237509736c0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8wYzE4MzI4MC1lNTBhLTRmOGUtYmU3Yy04MDIzNzUwOTczNmMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 21:47:03 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "42bc0d31-fdf1-410a-84db-5abce3516898"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9883ff5-96ec-493a-b713-b481188a3d35"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T214703Z:f9883ff5-96ec-493a-b713-b481188a3d35"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/0c183280-e50a-4f8e-be7c-80237509736c0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8wYzE4MzI4MC1lNTBhLTRmOGUtYmU3Yy04MDIzNzUwOTczNmMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 21:47:14 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "90a5623a-559b-4fd5-916d-624fa4ec424e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "95b05b1f-b0d2-4900-a8a5-93a83649b3fd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T214714Z:95b05b1f-b0d2-4900-a8a5-93a83649b3fd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/0c183280-e50a-4f8e-be7c-80237509736c0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8wYzE4MzI4MC1lNTBhLTRmOGUtYmU3Yy04MDIzNzUwOTczNmMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
"ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
@@ -1370,7 +1754,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:54:42 GMT"
+ "Fri, 22 Dec 2017 21:47:24 GMT"
],
"Pragma": [
"no-cache"
@@ -1382,7 +1766,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "e6580eff-98b2-4584-a53a-76a4af8f0692"
+ "204f1341-84b1-4f92-b9f8-4838b17b808f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1394,13 +1778,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14998"
],
"x-ms-correlation-request-id": [
- "4b6655c2-c010-4ea1-9670-ca72eb3963d8"
+ "dce29d79-4241-427f-8ec3-26fb83460cb7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205442Z:4b6655c2-c010-4ea1-9670-ca72eb3963d8"
+ "WESTUS2:20171222T214725Z:dce29d79-4241-427f-8ec3-26fb83460cb7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1409,17 +1793,17 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeAnalytics/accounts/testaba22188?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjIxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeAnalytics/accounts/testaba24072?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3Rlc3RhYmEyNDA3Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake1959\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake1959\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 250,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba22188.azuredatalakeanalytics.net\",\r\n \"accountId\": \"dcb23357-7c83-4f24-a4bc-d68857d9d89d\",\r\n \"creationTime\": \"2017-06-09T20:54:15.1965942Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:54:15.1965942Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeAnalytics/accounts/testaba22188\",\r\n \"name\": \"testaba22188\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake19798\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake19798\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba24072.azuredatalakeanalytics.net\",\r\n \"accountId\": \"0c183280-e50a-4f8e-be7c-80237509736c\",\r\n \"creationTime\": \"2017-12-22T21:46:55.2723774Z\",\r\n \"lastModifiedTime\": \"2017-12-22T21:46:55.2723774Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeAnalytics/accounts/testaba24072\",\r\n \"name\": \"testaba24072\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -1434,7 +1818,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:54:43 GMT"
+ "Fri, 22 Dec 2017 21:47:25 GMT"
],
"Pragma": [
"no-cache"
@@ -1446,7 +1830,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "4de24ae6-1399-400c-a0fd-e3a8daf21042"
+ "a6be1690-6342-406d-8b9e-a31dfb0f43af"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1458,13 +1842,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14995"
],
"x-ms-correlation-request-id": [
- "3fd9c698-a459-4728-8860-914b5786fee0"
+ "bf6e8827-bd3d-4aea-ada1-20d5914e1a7d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205443Z:3fd9c698-a459-4728-8860-914b5786fee0"
+ "WESTUS2:20171222T214726Z:bf6e8827-bd3d-4aea-ada1-20d5914e1a7d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1473,23 +1857,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeAnalytics/accounts/testaba22188?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjIxODg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeAnalytics/accounts/testaba24072?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3Rlc3RhYmEyNDA3Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac811d7c-af68-416a-9c60-40fb8cbd475b"
+ "f018d969-10e7-45a2-9dc9-df2a5bacefac"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake1959\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake1959\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 250,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba22188.azuredatalakeanalytics.net\",\r\n \"accountId\": \"dcb23357-7c83-4f24-a4bc-d68857d9d89d\",\r\n \"creationTime\": \"2017-06-09T20:54:15.1965942Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:54:15.1965942Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15664/providers/Microsoft.DataLakeAnalytics/accounts/testaba22188\",\r\n \"name\": \"testaba22188\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake19798\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake19798\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba24072.azuredatalakeanalytics.net\",\r\n \"accountId\": \"0c183280-e50a-4f8e-be7c-80237509736c\",\r\n \"creationTime\": \"2017-12-22T21:46:55.2723774Z\",\r\n \"lastModifiedTime\": \"2017-12-22T21:46:55.2723774Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba1551/providers/Microsoft.DataLakeAnalytics/accounts/testaba24072\",\r\n \"name\": \"testaba24072\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -1504,7 +1888,7 @@
"close"
],
"Date": [
- "Fri, 09 Jun 2017 20:54:43 GMT"
+ "Fri, 22 Dec 2017 21:47:25 GMT"
],
"Pragma": [
"no-cache"
@@ -1516,7 +1900,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "a35bebca-ef8f-427c-937d-546714c854e3"
+ "f047d6fb-60a8-4db7-bb50-54cd308bd4b9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1528,13 +1912,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14995"
],
"x-ms-correlation-request-id": [
- "e773b309-8799-48a8-9438-e7ce025daa5d"
+ "f4c3c660-e349-4812-be70-70f49cb40f13"
],
"x-ms-routing-request-id": [
- "WESTUS2:20170609T205444Z:e773b309-8799-48a8-9438-e7ce025daa5d"
+ "WESTUS2:20171222T214726Z:f4c3c660-e349-4812-be70-70f49cb40f13"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1543,10 +1927,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZTNiOWJjOTUtNzEyYy00NTdiLWFlZjEtY2IyZDlhMThjMmEzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/Jobs/5412141e-262b-4576-b37c-f05c6e85f7f7?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvNTQxMjE0MWUtMjYyYi00NTc2LWIzN2MtZjA1YzZlODVmN2Y3P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"name\": \"testjob16520\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb14098; CREATE DATABASE testdb14098; \\r\\n//Create Table\\r\\nCREATE TABLE testdb14098.dbo.testtbl13155\\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 (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb14098.dbo.testtbl13155 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb14098.dbo.testtvf17317;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb14098.dbo.testtvf17317()\\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 testdb14098.dbo.testview11458 \\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 testdb14098.dbo.testproc19669()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb14098.dbo.testview11458 \\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}",
+ "RequestBody": "{\r\n \"name\": \"testjob19465\",\r\n \"degreeOfParallelism\": 2,\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb18138; CREATE DATABASE testdb18138; \\r\\n//Create Table\\r\\nCREATE TABLE testdb18138.dbo.testtbl13414\\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 (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb18138.dbo.testtbl13414 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb18138.dbo.testtvf17862;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb18138.dbo.testtvf17862()\\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 testdb18138.dbo.testview14907 \\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 testdb18138.dbo.testproc19225()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb18138.dbo.testview14907 \\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}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1555,17 +1939,17 @@
"2531"
],
"x-ms-client-request-id": [
- "db1db7f1-662a-4782-9a70-fd2ccea57adf"
+ "451b878e-2b4d-4214-b41b-c1bad4a1259d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"e3b9bc95-712c-457b-aef1-cb2d9a18c2a3\",\r\n \"name\": \"testjob16520\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-09T13:54:44.8276926-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-09T13:54:44.8276926-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"5412141e-262b-4576-b37c-f05c6e85f7f7\",\r\n \"name\": \"testjob19465\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T13:52:27.792181-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T13:52:27.792181-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1577,13 +1961,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:54:45 GMT"
+ "Fri, 22 Dec 2017 21:52:27 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "7144e608-a121-4524-a994-9da99da76834"
+ "487d5b2f-5bbf-41e0-b6a4-72f95ad65ba0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1595,23 +1979,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZTNiOWJjOTUtNzEyYy00NTdiLWFlZjEtY2IyZDlhMThjMmEzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/Jobs/5412141e-262b-4576-b37c-f05c6e85f7f7?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvNTQxMjE0MWUtMjYyYi00NTc2LWIzN2MtZjA1YzZlODVmN2Y3P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a81054b2-239a-4265-9a38-05d87617c26f"
+ "672606ed-9b92-4bca-983b-6660b4f5d9f1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"e3b9bc95-712c-457b-aef1-cb2d9a18c2a3\",\r\n \"name\": \"testjob16520\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-09T13:54:44.8276926-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-09T13:54:44.8276926-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-09T13:54:45.1870303-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14098; CREATE DATABASE testdb14098; \\n//Create Table\\nCREATE TABLE testdb14098.dbo.testtbl13155\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14098.dbo.testtbl13155 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14098.dbo.testtvf17317;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14098.dbo.testtvf17317()\\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 testdb14098.dbo.testview11458 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14098.dbo.testproc19669()\\nAS BEGIN\\n CREATE VIEW testdb14098.dbo.testview11458 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.2089413S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"5412141e-262b-4576-b37c-f05c6e85f7f7\",\r\n \"name\": \"testjob19465\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T13:52:27.792181-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T13:52:27.792181-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18138; CREATE DATABASE testdb18138; \\n//Create Table\\nCREATE TABLE testdb18138.dbo.testtbl13414\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18138.dbo.testtbl13414 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18138.dbo.testtvf17862;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18138.dbo.testtvf17862()\\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 testdb18138.dbo.testview14907 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18138.dbo.testproc19225()\\nAS BEGIN\\n CREATE VIEW testdb18138.dbo.testview14907 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1623,13 +2007,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:54:45 GMT"
+ "Fri, 22 Dec 2017 21:52:27 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "35ddabfb-9d79-45ac-b7a8-8b83357ebced"
+ "97a3dc1a-30b6-4041-a709-18d1f1695fb9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1641,23 +2025,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZTNiOWJjOTUtNzEyYy00NTdiLWFlZjEtY2IyZDlhMThjMmEzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/Jobs/5412141e-262b-4576-b37c-f05c6e85f7f7?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvNTQxMjE0MWUtMjYyYi00NTc2LWIzN2MtZjA1YzZlODVmN2Y3P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "70202001-c7f1-46c9-9319-6e60ed97c264"
+ "4fb6aa3b-3393-4c9a-a6e5-d8555fc7b487"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"e3b9bc95-712c-457b-aef1-cb2d9a18c2a3\",\r\n \"name\": \"testjob16520\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-09T13:54:44.8276926-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-09T13:54:44.8276926-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-09T13:54:45.1870303-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14098; CREATE DATABASE testdb14098; \\n//Create Table\\nCREATE TABLE testdb14098.dbo.testtbl13155\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14098.dbo.testtbl13155 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14098.dbo.testtvf17317;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14098.dbo.testtvf17317()\\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 testdb14098.dbo.testview11458 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14098.dbo.testproc19669()\\nAS BEGIN\\n CREATE VIEW testdb14098.dbo.testview11458 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.6592487S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"5412141e-262b-4576-b37c-f05c6e85f7f7\",\r\n \"name\": \"testjob19465\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T13:52:27.792181-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T13:52:27.792181-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T13:52:28.2453401-08:00\",\r\n \"details\": \"Compilation:a94ec15e-716f-4c8a-af56-38d398e906b9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18138; CREATE DATABASE testdb18138; \\n//Create Table\\nCREATE TABLE testdb18138.dbo.testtbl13414\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18138.dbo.testtbl13414 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18138.dbo.testtvf17862;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18138.dbo.testtvf17862()\\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 testdb18138.dbo.testview14907 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18138.dbo.testproc19225()\\nAS BEGIN\\n CREATE VIEW testdb18138.dbo.testview14907 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.6915981S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1669,13 +2053,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:54:50 GMT"
+ "Fri, 22 Dec 2017 21:52:33 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "f6c9d345-3456-4cac-a59d-4df6bfa6d25a"
+ "128eaffa-64e8-4519-8fe5-e1beafeb2c91"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1687,23 +2071,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZTNiOWJjOTUtNzEyYy00NTdiLWFlZjEtY2IyZDlhMThjMmEzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/Jobs/5412141e-262b-4576-b37c-f05c6e85f7f7?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvNTQxMjE0MWUtMjYyYi00NTc2LWIzN2MtZjA1YzZlODVmN2Y3P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5eb1d9a3-fab3-4b49-9fed-c7c6781e00dc"
+ "3c6c2179-291e-491f-9dac-f2601b464a98"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"e3b9bc95-712c-457b-aef1-cb2d9a18c2a3\",\r\n \"name\": \"testjob16520\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-09T13:54:44.8276926-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-09T13:54:44.8276926-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-09T13:54:45.1870303-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14098; CREATE DATABASE testdb14098; \\n//Create Table\\nCREATE TABLE testdb14098.dbo.testtbl13155\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14098.dbo.testtbl13155 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14098.dbo.testtvf17317;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14098.dbo.testtvf17317()\\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 testdb14098.dbo.testview11458 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14098.dbo.testproc19669()\\nAS BEGIN\\n CREATE VIEW testdb14098.dbo.testview11458 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8965153S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"5412141e-262b-4576-b37c-f05c6e85f7f7\",\r\n \"name\": \"testjob19465\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T13:52:27.792181-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T13:52:27.792181-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T13:52:28.2453401-08:00\",\r\n \"details\": \"Compilation:a94ec15e-716f-4c8a-af56-38d398e906b9;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18138; CREATE DATABASE testdb18138; \\n//Create Table\\nCREATE TABLE testdb18138.dbo.testtbl13414\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18138.dbo.testtbl13414 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18138.dbo.testtvf17862;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18138.dbo.testtvf17862()\\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 testdb18138.dbo.testview14907 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18138.dbo.testproc19225()\\nAS BEGIN\\n CREATE VIEW testdb18138.dbo.testview14907 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8635709S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1715,13 +2099,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:54:56 GMT"
+ "Fri, 22 Dec 2017 21:52:39 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "3b56de40-3c95-4026-b6b2-984d3925d585"
+ "0b1ba02f-e012-460b-9c54-a25d270651de"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1733,23 +2117,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZTNiOWJjOTUtNzEyYy00NTdiLWFlZjEtY2IyZDlhMThjMmEzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/Jobs/5412141e-262b-4576-b37c-f05c6e85f7f7?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvNTQxMjE0MWUtMjYyYi00NTc2LWIzN2MtZjA1YzZlODVmN2Y3P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a06600a-e575-4355-a852-155614926485"
+ "682373e4-af10-4162-a84c-5a6da6a0ca62"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"e3b9bc95-712c-457b-aef1-cb2d9a18c2a3\",\r\n \"name\": \"testjob16520\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-09T13:54:44.8276926-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-09T13:54:44.8276926-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-09T13:54:45.1870303-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-06-09T13:54:59.7899861-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-06-09T13:54:59.80561-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b49b0c23-5d83-4410-88f9-775bf96affb5\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-06-09T13:54:59.80561-07:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5353478\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5353478\",\r\n \"rootProcessNodeId\": \"b49b0c23-5d83-4410-88f9-775bf96affb5\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14098; CREATE DATABASE testdb14098; \\n//Create Table\\nCREATE TABLE testdb14098.dbo.testtbl13155\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14098.dbo.testtbl13155 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14098.dbo.testtvf17317;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14098.dbo.testtvf17317()\\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 testdb14098.dbo.testview11458 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14098.dbo.testproc19669()\\nAS BEGIN\\n CREATE VIEW testdb14098.dbo.testview11458 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/algebra.xml\",\r\n \"yarnApplicationId\": 77719,\r\n \"yarnApplicationTimeStamp\": 1496985982015,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.6029558S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156239S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"5412141e-262b-4576-b37c-f05c6e85f7f7\",\r\n \"name\": \"testjob19465\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T13:52:27.792181-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T13:52:27.792181-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T13:52:28.2453401-08:00\",\r\n \"details\": \"Compilation:a94ec15e-716f-4c8a-af56-38d398e906b9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-22T13:52:41.0892001-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-22T13:52:41.104827-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:644f7bab-6062-4593-85e7-432c85afeedc\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-22T13:52:41.1204522-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_bcdc94ee\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_bcdc94ee\",\r\n \"rootProcessNodeId\": \"644f7bab-6062-4593-85e7-432c85afeedc\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18138; CREATE DATABASE testdb18138; \\n//Create Table\\nCREATE TABLE testdb18138.dbo.testtbl13414\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18138.dbo.testtbl13414 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18138.dbo.testtvf17862;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18138.dbo.testtvf17862()\\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 testdb18138.dbo.testview14907 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18138.dbo.testproc19225()\\nAS BEGIN\\n CREATE VIEW testdb18138.dbo.testview14907 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/algebra.xml\",\r\n \"yarnApplicationId\": 443340,\r\n \"yarnApplicationTimeStamp\": 1513729150045,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.84386S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156269S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1761,13 +2145,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:55:00 GMT"
+ "Fri, 22 Dec 2017 21:52:44 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "fbd9aab0-5fab-47f4-b8a5-063d5be65bb6"
+ "002e2d91-ae59-4ac0-9013-f91d8794459a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1779,23 +2163,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZTNiOWJjOTUtNzEyYy00NTdiLWFlZjEtY2IyZDlhMThjMmEzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/Jobs/5412141e-262b-4576-b37c-f05c6e85f7f7?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvNTQxMjE0MWUtMjYyYi00NTc2LWIzN2MtZjA1YzZlODVmN2Y3P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ab23e5d4-d579-4991-956d-a41f2337d59f"
+ "2c11ee87-a2a0-443e-8a60-a1b4e69d4a64"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"e3b9bc95-712c-457b-aef1-cb2d9a18c2a3\",\r\n \"name\": \"testjob16520\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-09T13:54:44.8276926-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-09T13:54:44.8276926-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-09T13:54:45.1870303-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-06-09T13:54:59.7899861-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-06-09T13:54:59.80561-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b49b0c23-5d83-4410-88f9-775bf96affb5\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-06-09T13:54:59.80561-07:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5353478\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5353478\",\r\n \"rootProcessNodeId\": \"b49b0c23-5d83-4410-88f9-775bf96affb5\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14098; CREATE DATABASE testdb14098; \\n//Create Table\\nCREATE TABLE testdb14098.dbo.testtbl13155\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14098.dbo.testtbl13155 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14098.dbo.testtvf17317;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14098.dbo.testtvf17317()\\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 testdb14098.dbo.testview11458 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14098.dbo.testproc19669()\\nAS BEGIN\\n CREATE VIEW testdb14098.dbo.testview11458 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/algebra.xml\",\r\n \"yarnApplicationId\": 77719,\r\n \"yarnApplicationTimeStamp\": 1496985982015,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.6029558S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156239S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"5412141e-262b-4576-b37c-f05c6e85f7f7\",\r\n \"name\": \"testjob19465\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T13:52:27.792181-08:00\",\r\n \"startTime\": \"2017-12-22T13:52:47.995499-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T13:52:27.792181-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T13:52:28.2453401-08:00\",\r\n \"details\": \"Compilation:a94ec15e-716f-4c8a-af56-38d398e906b9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-22T13:52:41.0892001-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-22T13:52:41.104827-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:644f7bab-6062-4593-85e7-432c85afeedc\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-22T13:52:41.1204522-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_bcdc94ee\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-22T13:52:47.995499-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_bcdc94ee\",\r\n \"rootProcessNodeId\": \"644f7bab-6062-4593-85e7-432c85afeedc\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18138; CREATE DATABASE testdb18138; \\n//Create Table\\nCREATE TABLE testdb18138.dbo.testtbl13414\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18138.dbo.testtbl13414 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18138.dbo.testtvf17862;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18138.dbo.testtvf17862()\\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 testdb18138.dbo.testview14907 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18138.dbo.testproc19225()\\nAS BEGIN\\n CREATE VIEW testdb18138.dbo.testview14907 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/algebra.xml\",\r\n \"yarnApplicationId\": 443340,\r\n \"yarnApplicationTimeStamp\": 1513729150045,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.84386S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156269S\",\r\n \"totalRunningTime\": \"PT1.5354425S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1807,13 +2191,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:55:05 GMT"
+ "Fri, 22 Dec 2017 21:52:49 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "bf645d14-6dba-4ada-8694-b566a773a47f"
+ "343d11ed-54a9-4a4c-a783-90ffa32502d4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1825,23 +2209,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZTNiOWJjOTUtNzEyYy00NTdiLWFlZjEtY2IyZDlhMThjMmEzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/Jobs/5412141e-262b-4576-b37c-f05c6e85f7f7?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvNTQxMjE0MWUtMjYyYi00NTc2LWIzN2MtZjA1YzZlODVmN2Y3P2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1761c1ba-04aa-478e-a173-a439eb393460"
+ "7e75299f-57f4-4db8-a2cf-c917888da9cf"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"e3b9bc95-712c-457b-aef1-cb2d9a18c2a3\",\r\n \"name\": \"testjob16520\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-09T13:54:44.8276926-07:00\",\r\n \"startTime\": \"2017-06-09T13:55:07.4306838-07:00\",\r\n \"endTime\": \"2017-06-09T13:55:11.0869728-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-09T13:54:44.8276926-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-09T13:54:45.1870303-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-06-09T13:54:59.7899861-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-06-09T13:54:59.80561-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b49b0c23-5d83-4410-88f9-775bf96affb5\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-06-09T13:54:59.80561-07:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5353478\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-06-09T13:55:07.4306838-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-06-09T13:55:11.0869728-07:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5353478\",\r\n \"rootProcessNodeId\": \"b49b0c23-5d83-4410-88f9-775bf96affb5\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14098; CREATE DATABASE testdb14098; \\n//Create Table\\nCREATE TABLE testdb14098.dbo.testtbl13155\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14098.dbo.testtbl13155 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14098.dbo.testtvf17317;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14098.dbo.testtvf17317()\\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 testdb14098.dbo.testview11458 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14098.dbo.testproc19669()\\nAS BEGIN\\n CREATE VIEW testdb14098.dbo.testview11458 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake1959.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/54/e3b9bc95-712c-457b-aef1-cb2d9a18c2a3/algebra.xml\",\r\n \"yarnApplicationId\": 77719,\r\n \"yarnApplicationTimeStamp\": 1496985982015,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.6029558S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156239S\",\r\n \"totalRunningTime\": \"PT3.656289S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"jobId\": \"5412141e-262b-4576-b37c-f05c6e85f7f7\",\r\n \"name\": \"testjob19465\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T13:52:27.792181-08:00\",\r\n \"startTime\": \"2017-12-22T13:52:47.995499-08:00\",\r\n \"endTime\": \"2017-12-22T13:52:51.4018154-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T13:52:27.792181-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T13:52:28.2453401-08:00\",\r\n \"details\": \"Compilation:a94ec15e-716f-4c8a-af56-38d398e906b9;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-22T13:52:41.0892001-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-22T13:52:41.104827-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:644f7bab-6062-4593-85e7-432c85afeedc\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-22T13:52:41.1204522-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_bcdc94ee\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-22T13:52:47.995499-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-12-22T13:52:51.4018154-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_bcdc94ee\",\r\n \"rootProcessNodeId\": \"644f7bab-6062-4593-85e7-432c85afeedc\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18138; CREATE DATABASE testdb18138; \\n//Create Table\\nCREATE TABLE testdb18138.dbo.testtbl13414\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18138.dbo.testtbl13414 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18138.dbo.testtvf17862;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18138.dbo.testtvf17862()\\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 testdb18138.dbo.testview14907 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18138.dbo.testproc19225()\\nAS BEGIN\\n CREATE VIEW testdb18138.dbo.testview14907 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake19798.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/21/52/5412141e-262b-4576-b37c-f05c6e85f7f7/algebra.xml\",\r\n \"yarnApplicationId\": 443340,\r\n \"yarnApplicationTimeStamp\": 1513729150045,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.84386S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156269S\",\r\n \"totalRunningTime\": \"PT3.4063164S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1853,13 +2237,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:55:11 GMT"
+ "Fri, 22 Dec 2017 21:52:54 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "cbcfddde-491a-463d-8d53-65fd4c452b36"
+ "a37098cf-a4ad-4526-ae40-1b413de025bd"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1871,26 +2255,26 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb14098/credentials/testsecret15237?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQwOTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1MjM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb18138/credentials/testsecret15636?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTgxMzgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1NjM2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"testsecretpwd1473\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"7b5a6da2-e6c1-49a2-b740-896b63653db5\"\r\n}",
+ "RequestBody": "{\r\n \"password\": \"testsecretpwd15498\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"1b30497e-a948-432c-b805-cdf8339640fb\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "144"
+ "145"
],
"x-ms-client-request-id": [
- "7c9eccec-346c-4811-a3e3-641a11e71658"
+ "6854481c-572a-45fb-907a-97ed0835f0e7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
"ResponseBody": "",
@@ -1902,13 +2286,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:55:13 GMT"
+ "Fri, 22 Dec 2017 21:53:00 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "b595e011-4ee0-4806-8957-52063cb2372d"
+ "4ebdc1be-3905-4101-9463-1c6ff6062571"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1920,29 +2304,29 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb14098/credentials/testsecret15237?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQwOTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1MjM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb18138/credentials/testsecret15636?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTgxMzgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1NjM2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"testsecretpwd1473\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"b12b6abc-6db3-44b5-8409-e93608d22c1d\"\r\n}",
+ "RequestBody": "{\r\n \"password\": \"testsecretpwd15498\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"5a213982-49a5-4e76-b39f-8ce2cee12af0\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "144"
+ "145"
],
"x-ms-client-request-id": [
- "78cc87eb-f28b-43c1-8191-011ba03832f6"
+ "f79c4264-90a8-427c-a071-6248ea3d20f2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceAlreadyExists\",\r\n \"message\": \"The resource 'testsecret15237' already exists. Trace: fcfe7b4c-bd0f-423f-909c-d26aa9605d6b Time: 2017-06-09T13:55:13.9626648-07:00\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceAlreadyExists\",\r\n \"message\": \"The resource 'testsecret15636' already exists. Trace: c7284978-9880-4378-b97c-f72ee5b4db7f Time: 2017-12-22T13:53:01.4299685-08:00\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1954,13 +2338,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:55:13 GMT"
+ "Fri, 22 Dec 2017 21:53:01 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "fcfe7b4c-bd0f-423f-909c-d26aa9605d6b"
+ "c7284978-9880-4378-b97c-f72ee5b4db7f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1972,26 +2356,26 @@
"StatusCode": 409
},
{
- "RequestUri": "/catalog/usql/databases/testdb14098/credentials/testsecret15237?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQwOTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1MjM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb18138/credentials/testsecret15636?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTgxMzgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1NjM2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"testsecretpwd1473\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"cd3e999d-bc9e-4e2d-8c12-c9a61281ad80\"\r\n}",
+ "RequestBody": "{\r\n \"password\": \"testsecretpwd15498\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"92798533-cb87-4510-a2e5-fd4ea5e43576\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "144"
+ "145"
],
"x-ms-client-request-id": [
- "3055523b-c067-48b5-9170-de5fab20f553"
+ "4228b890-b5b2-4c80-8481-9af8e5d3e0a4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
"ResponseBody": "",
@@ -2003,13 +2387,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:55:16 GMT"
+ "Fri, 22 Dec 2017 21:53:05 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "1fac9eea-a745-4b36-8c64-fdfd2c5665b9"
+ "6bc19029-8127-4071-aef6-02b1c5d0d14c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2021,26 +2405,26 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb14098/credentials/testsecret15237dup?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQwOTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1MjM3ZHVwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb18138/credentials/testsecret15636dup?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTgxMzgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1NjM2ZHVwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"testsecretpwd1473\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"7a39e40c-6858-49ef-9b60-b688b3f7a61e\"\r\n}",
+ "RequestBody": "{\r\n \"password\": \"testsecretpwd15498\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"a995bda3-f4eb-4d29-8815-8961308fe78e\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "144"
+ "145"
],
"x-ms-client-request-id": [
- "f52d5473-2bbb-40ca-8648-b50be0d5eaae"
+ "fb289294-3e9c-475d-8692-01c868fecc68"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
"ResponseBody": "",
@@ -2052,13 +2436,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:55:14 GMT"
+ "Fri, 22 Dec 2017 21:53:02 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "52c26a81-37e9-4dde-8a03-ee34f3125a33"
+ "eb63cfd2-90ab-4bc9-898c-8b9245aa055b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2070,23 +2454,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb14098/credentials/testsecret15237?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQwOTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1MjM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb18138/credentials/testsecret15636?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTgxMzgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1NjM2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1a270e6a-0f8a-4784-91dd-45a370e0ee32"
+ "fa6f842f-6dd1-4cb2-b792-32eaed2999c5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"credentialName\": \"testsecret15237\"\r\n}",
+ "ResponseBody": "{\r\n \"credentialName\": \"testsecret15636\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2098,13 +2482,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:55:14 GMT"
+ "Fri, 22 Dec 2017 21:53:02 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "75a21ba2-c6e2-4f3b-a016-310f0472dd2e"
+ "2b68a3f2-cfd8-4665-8f94-1dcfa08ad272"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2116,23 +2500,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb14098/credentials/testsecret15237?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQwOTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1MjM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb18138/credentials/testsecret15636?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTgxMzgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1NjM2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "90b7a614-3224-4098-b0c2-253d454cd109"
+ "9d4386b7-c3db-411d-806f-3620e55bc515"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"credentialName\": \"testsecret15237\"\r\n}",
+ "ResponseBody": "{\r\n \"credentialName\": \"testsecret15636\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2144,13 +2528,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:55:14 GMT"
+ "Fri, 22 Dec 2017 21:53:03 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "8bbd6d13-8363-491f-8cd2-7890e5f3927b"
+ "2349dfa6-2b79-4e0b-84e8-8bc4aaf43c6f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2162,23 +2546,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb14098/credentials/testsecret15237?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQwOTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1MjM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb18138/credentials/testsecret15636?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTgxMzgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1NjM2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a2eb052-8ae5-447b-880d-ae89dcce84a6"
+ "4e08af96-e036-4807-a882-4087e1baf4ef"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret15237' does not exist. Trace: 0fe151ca-7067-4169-86cf-18f1e1680d6d Time: 2017-06-09T13:55:16.2752107-07:00\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret15636' does not exist. Trace: 67c32914-037d-4297-9f28-1254f10efaf1 Time: 2017-12-22T13:53:04.7112826-08:00\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2190,13 +2574,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:55:15 GMT"
+ "Fri, 22 Dec 2017 21:53:04 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "0fe151ca-7067-4169-86cf-18f1e1680d6d"
+ "67c32914-037d-4297-9f28-1254f10efaf1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2208,23 +2592,23 @@
"StatusCode": 404
},
{
- "RequestUri": "/catalog/usql/databases/testdb14098/credentials/testsecret15237?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQwOTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1MjM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb18138/credentials/testsecret15636?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTgxMzgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1NjM2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6d066b33-c0eb-447d-940f-0d63b810cbb0"
+ "0123149d-3dc3-436c-97af-e262ec5300e0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret15237' does not exist. Trace: cefceb4c-631f-4143-a26c-5a7d5a688078 Time: 2017-06-09T13:55:17.8689928-07:00\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret15636' does not exist. Trace: 63bbb7fd-040c-430a-a442-4a144e18d1b7 Time: 2017-12-22T13:53:06.7269228-08:00\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2236,13 +2620,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:55:17 GMT"
+ "Fri, 22 Dec 2017 21:53:06 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "cefceb4c-631f-4143-a26c-5a7d5a688078"
+ "63bbb7fd-040c-430a-a442-4a144e18d1b7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2254,23 +2638,23 @@
"StatusCode": 404
},
{
- "RequestUri": "/catalog/usql/databases/testdb14098/credentials?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQwOTgvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/catalog/usql/databases/testdb18138/credentials?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTgxMzgvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1b3416c8-9cdc-4b19-806e-cddf68d0684a"
+ "4e924494-a5e6-4d2a-b8b4-ce7cc0fcb5e1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"credentialName\": \"testsecret15237\"\r\n },\r\n {\r\n \"credentialName\": \"testsecret15237dup\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"credentialName\": \"testsecret15636\"\r\n },\r\n {\r\n \"credentialName\": \"testsecret15636dup\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -2282,13 +2666,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:55:14 GMT"
+ "Fri, 22 Dec 2017 21:53:03 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "7ffedb6d-8879-4ee9-8fa1-9ae87d892ac9"
+ "182f15f5-e8b1-44ad-bd61-5f5bf92c0b75"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2300,26 +2684,26 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb14098/credentials/testsecret15237?cascade=false&api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQwOTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1MjM3P2Nhc2NhZGU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/catalog/usql/databases/testdb18138/credentials/testsecret15636?cascade=false&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTgxMzgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1NjM2P2Nhc2NhZGU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"password\": \"testsecretpwd1473\"\r\n}",
+ "RequestBody": "{\r\n \"password\": \"testsecretpwd15498\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "39"
+ "40"
],
"x-ms-client-request-id": [
- "1f383cc9-7954-4e44-aa14-05ffc86a33f4"
+ "183ad8bf-fdbd-4a32-9db9-3d383865db97"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
"ResponseBody": "",
@@ -2331,13 +2715,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:55:15 GMT"
+ "Fri, 22 Dec 2017 21:53:04 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "8e94ab7a-b049-417f-8b50-46968235aaa9"
+ "26e7be6e-db4f-4208-b285-0bd009069acd"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2349,26 +2733,26 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb14098/credentials/testsecret15237?cascade=true&api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQwOTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1MjM3P2Nhc2NhZGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/catalog/usql/databases/testdb18138/credentials/testsecret15636?cascade=true&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTgxMzgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE1NjM2P2Nhc2NhZGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"password\": \"testsecretpwd1473\"\r\n}",
+ "RequestBody": "{\r\n \"password\": \"testsecretpwd15498\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "39"
+ "40"
],
"x-ms-client-request-id": [
- "f21b2917-45fb-43d3-835e-db6fac556bcd"
+ "671afa5d-53c4-4568-a054-1c88ac44f794"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
"ResponseBody": "",
@@ -2380,13 +2764,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Fri, 09 Jun 2017 20:55:16 GMT"
+ "Fri, 22 Dec 2017 21:53:06 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "6c471973-0a7a-41c7-bab9-5ea1db023590"
+ "92583bc3-0d79-417d-94c3-c3313ab08f8b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2400,40 +2784,40 @@
],
"Names": {
".ctor": [
- "rgaba15664",
- "testaba17002",
- "testaba22188",
- "teststorage18661",
- "testdatalake1959",
- "testdatalake27679",
- "testazureblob18975",
- "testdb14098",
- "testtbl13155",
- "testtvf17317",
- "testproc19669",
- "testview11458",
- "testcred13726",
- "testsecret15237",
- "testsecretpwd1473"
+ "rgaba1551",
+ "testaba14019",
+ "testaba24072",
+ "teststorage19275",
+ "testdatalake19798",
+ "testdatalake27622",
+ "testazureblob14319",
+ "testdb18138",
+ "testtbl13414",
+ "testtvf17862",
+ "testproc19225",
+ "testview14907",
+ "testcred16391",
+ "testsecret15636",
+ "testsecretpwd15498"
],
"CreateCatalog": [
- "e3b9bc95-712c-457b-aef1-cb2d9a18c2a3"
+ "5412141e-262b-4576-b37c-f05c6e85f7f7"
],
"RunJobToCompletion": [
- "testjob16520"
+ "testjob19465"
],
"fakeUserId01": [
- "7b5a6da2-e6c1-49a2-b740-896b63653db5",
- "cd3e999d-bc9e-4e2d-8c12-c9a61281ad80"
+ "1b30497e-a948-432c-b805-cdf8339640fb",
+ "92798533-cb87-4510-a2e5-fd4ea5e43576"
],
"fakeUserId02": [
- "b12b6abc-6db3-44b5-8409-e93608d22c1d"
+ "5a213982-49a5-4e76-b39f-8ce2cee12af0"
],
"fakeUserId03": [
- "7a39e40c-6858-49ef-9b60-b688b3f7a61e"
+ "a995bda3-f4eb-4d29-8815-8961308fe78e"
]
},
"Variables": {
- "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db"
}
}
\ No newline at end of file
diff --git a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/GetCatalogItemsTest.json b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/GetCatalogItemsTest.json
index c9fd0b396820..c4f57f825940 100644
--- a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/GetCatalogItemsTest.json
+++ b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/GetCatalogItemsTest.json
@@ -1,23 +1,23 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "02d1c4cc-89d8-4bb0-af2f-daa989769cf0"
+ "f97ceead-93e1-4ace-b896-dbfd4b570907"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "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 \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -29,7 +29,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Jun 2017 23:39:10 GMT"
+ "Fri, 22 Dec 2017 22:27:20 GMT"
],
"Pragma": [
"no-cache"
@@ -44,13 +44,13 @@
"1199"
],
"x-ms-request-id": [
- "378c1eb3-9434-405b-ba6e-a808bc7d7050"
+ "f3657aea-9c34-4981-9da0-ef874df335ad"
],
"x-ms-correlation-request-id": [
- "378c1eb3-9434-405b-ba6e-a808bc7d7050"
+ "f3657aea-9c34-4981-9da0-ef874df335ad"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233911Z:378c1eb3-9434-405b-ba6e-a808bc7d7050"
+ "WESTUS2:20171222T222721Z:f3657aea-9c34-4981-9da0-ef874df335ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -59,23 +59,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "97c525ff-dd93-4abd-b6e1-6108049ca551"
+ "ba65b85f-f1ec-4fd6-ad54-e627a7f8882e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "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 \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -87,7 +87,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Jun 2017 23:39:10 GMT"
+ "Fri, 22 Dec 2017 22:27:20 GMT"
],
"Pragma": [
"no-cache"
@@ -96,16 +96,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14996"
],
"x-ms-request-id": [
- "b2eb32c1-2982-42e5-8201-63881fe2d4c9"
+ "e617f099-7f1f-4375-9794-dc4a9d2b1d93"
],
"x-ms-correlation-request-id": [
- "b2eb32c1-2982-42e5-8201-63881fe2d4c9"
+ "e617f099-7f1f-4375-9794-dc4a9d2b1d93"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233911Z:b2eb32c1-2982-42e5-8201-63881fe2d4c9"
+ "WESTUS2:20171222T222721Z:e617f099-7f1f-4375-9794-dc4a9d2b1d93"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -114,23 +114,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ee8a2850-5213-4dcc-802a-ce2878be90a9"
+ "e3e82a67-3f28-49a8-ae3a-bd659b599d13"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -142,7 +142,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Jun 2017 23:39:11 GMT"
+ "Fri, 22 Dec 2017 22:27:21 GMT"
],
"Pragma": [
"no-cache"
@@ -157,13 +157,13 @@
"1198"
],
"x-ms-request-id": [
- "1f189bca-e892-4958-8a75-e2fef20f8e08"
+ "2f7bd11b-8b9c-41d1-965e-ac9d03b412cb"
],
"x-ms-correlation-request-id": [
- "1f189bca-e892-4958-8a75-e2fef20f8e08"
+ "2f7bd11b-8b9c-41d1-965e-ac9d03b412cb"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233912Z:1f189bca-e892-4958-8a75-e2fef20f8e08"
+ "WESTUS2:20171222T222722Z:2f7bd11b-8b9c-41d1-965e-ac9d03b412cb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -172,23 +172,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3f989ff-1f94-448c-94b7-fd505cceec45"
+ "5e0afda8-a131-434c-b9d4-43ba33074760"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -200,7 +200,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Jun 2017 23:39:11 GMT"
+ "Fri, 22 Dec 2017 22:27:21 GMT"
],
"Pragma": [
"no-cache"
@@ -209,16 +209,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14995"
],
"x-ms-request-id": [
- "d95fb281-e03d-4440-b0e9-a51e15b4b101"
+ "e4706011-eb4c-41ab-9da5-c122f9a08d8e"
],
"x-ms-correlation-request-id": [
- "d95fb281-e03d-4440-b0e9-a51e15b4b101"
+ "e4706011-eb4c-41ab-9da5-c122f9a08d8e"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233912Z:d95fb281-e03d-4440-b0e9-a51e15b4b101"
+ "WESTUS2:20171222T222722Z:e4706011-eb4c-41ab-9da5-c122f9a08d8e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -227,23 +227,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "97eac113-3e4c-4207-91c1-75857d89a02d"
+ "f0bd40e7-12c9-428a-be17-4b56f74b4f90"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -255,7 +255,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Jun 2017 23:39:12 GMT"
+ "Fri, 22 Dec 2017 22:27:22 GMT"
],
"Pragma": [
"no-cache"
@@ -270,13 +270,13 @@
"1197"
],
"x-ms-request-id": [
- "0055decb-aada-45fa-8b4f-0621cf58dd76"
+ "62214bc9-562d-4aa5-90ed-19d9a4d29474"
],
"x-ms-correlation-request-id": [
- "0055decb-aada-45fa-8b4f-0621cf58dd76"
+ "62214bc9-562d-4aa5-90ed-19d9a4d29474"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233913Z:0055decb-aada-45fa-8b4f-0621cf58dd76"
+ "WESTUS2:20171222T222723Z:62214bc9-562d-4aa5-90ed-19d9a4d29474"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -285,23 +285,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8ffaf713-892a-40fb-a790-80f7b7414c15"
+ "1d3f8071-80af-47a3-8ad5-dbe7b572cf1d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -313,7 +313,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Jun 2017 23:39:12 GMT"
+ "Fri, 22 Dec 2017 22:27:22 GMT"
],
"Pragma": [
"no-cache"
@@ -322,16 +322,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14994"
],
"x-ms-request-id": [
- "881c6fe9-b846-490d-abd6-edd913d5ee27"
+ "d170ab04-658a-4518-925e-b5f7226d7eba"
],
"x-ms-correlation-request-id": [
- "881c6fe9-b846-490d-abd6-edd913d5ee27"
+ "d170ab04-658a-4518-925e-b5f7226d7eba"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233913Z:881c6fe9-b846-490d-abd6-edd913d5ee27"
+ "WESTUS2:20171222T222723Z:d170ab04-658a-4518-925e-b5f7226d7eba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -340,23 +340,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12387?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTIzODc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba17557?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTc1NTc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6bbe74a-0991-4795-a9a0-2002a7a6107c"
+ "34bb8fb4-9852-4762-a29d-bd96a8c8dd52"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba12387' could not be found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba17557' could not be found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"102"
@@ -371,7 +371,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Jun 2017 23:39:12 GMT"
+ "Fri, 22 Dec 2017 22:27:22 GMT"
],
"Pragma": [
"no-cache"
@@ -380,16 +380,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14993"
],
"x-ms-request-id": [
- "96fc2286-d544-4fee-b596-e4d3739014b8"
+ "03403343-cb86-47b7-99a8-5b1a39addea2"
],
"x-ms-correlation-request-id": [
- "96fc2286-d544-4fee-b596-e4d3739014b8"
+ "03403343-cb86-47b7-99a8-5b1a39addea2"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233913Z:96fc2286-d544-4fee-b596-e4d3739014b8"
+ "WESTUS2:20171222T222723Z:03403343-cb86-47b7-99a8-5b1a39addea2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -398,23 +398,23 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12387?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTIzODc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba17557?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTc1NTc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1f9cda54-05a6-4a1d-9c34-a3ea4be5ef8d"
+ "f929c406-7837-458e-9ccf-9e5e92269355"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387\",\r\n \"name\": \"rgaba12387\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557\",\r\n \"name\": \"rgaba17557\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -426,7 +426,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Jun 2017 23:39:15 GMT"
+ "Fri, 22 Dec 2017 22:27:23 GMT"
],
"Pragma": [
"no-cache"
@@ -435,16 +435,16 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14992"
],
"x-ms-request-id": [
- "ef9ecf79-766d-4fa1-83c6-f4cab933c276"
+ "5f27ff1c-a971-4fbc-a6f1-3db896de595a"
],
"x-ms-correlation-request-id": [
- "ef9ecf79-766d-4fa1-83c6-f4cab933c276"
+ "5f27ff1c-a971-4fbc-a6f1-3db896de595a"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233915Z:ef9ecf79-766d-4fa1-83c6-f4cab933c276"
+ "WESTUS2:20171222T222724Z:5f27ff1c-a971-4fbc-a6f1-3db896de595a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -453,8 +453,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12387?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTIzODc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba17557?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTc1NTc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
@@ -465,17 +465,17 @@
"31"
],
"x-ms-client-request-id": [
- "59b18b89-8efa-47d1-8d40-be4034aa5776"
+ "1d514a35-0e6c-4dd7-9f9a-4d0e862bbb4e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387\",\r\n \"name\": \"rgaba12387\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557\",\r\n \"name\": \"rgaba17557\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"174"
@@ -490,7 +490,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Jun 2017 23:39:14 GMT"
+ "Fri, 22 Dec 2017 22:27:23 GMT"
],
"Pragma": [
"no-cache"
@@ -499,13 +499,13 @@
"1196"
],
"x-ms-request-id": [
- "41934de8-32d1-4ac1-8fab-b47a6476db4d"
+ "61efee07-4aa8-409a-ad59-6a86960c9bfa"
],
"x-ms-correlation-request-id": [
- "41934de8-32d1-4ac1-8fab-b47a6476db4d"
+ "61efee07-4aa8-409a-ad59-6a86960c9bfa"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233914Z:41934de8-32d1-4ac1-8fab-b47a6476db4d"
+ "WESTUS2:20171222T222724Z:61efee07-4aa8-409a-ad59-6a86960c9bfa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -514,23 +514,23 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake17622?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE3NjIyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake15484?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc1NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE1NDg0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6c7ddf7b-2c32-42ea-8cd5-67931ae1b685"
+ "511a7a9a-c76a-42ba-8c05-11c57b6c0015"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake17622' under resource group 'rgaba12387' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake15484' under resource group 'rgaba17557' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"164"
@@ -545,7 +545,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Jun 2017 23:39:15 GMT"
+ "Fri, 22 Dec 2017 22:27:24 GMT"
],
"Pragma": [
"no-cache"
@@ -554,13 +554,13 @@
"gateway"
],
"x-ms-request-id": [
- "0fa4420a-c0cd-4a7b-b18f-63babff49bfd"
+ "9b1a21c6-c1ac-4fc4-82ee-2a288b0082f1"
],
"x-ms-correlation-request-id": [
- "0fa4420a-c0cd-4a7b-b18f-63babff49bfd"
+ "9b1a21c6-c1ac-4fc4-82ee-2a288b0082f1"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233915Z:0fa4420a-c0cd-4a7b-b18f-63babff49bfd"
+ "WESTUS2:20171222T222724Z:9b1a21c6-c1ac-4fc4-82ee-2a288b0082f1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -569,17 +569,17 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake17622?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE3NjIyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake15484?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc1NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE1NDg0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake17622.azuredatalakestore.net\",\r\n \"accountId\": \"f6ba7965-dd63-4017-b723-1e35c0555a5d\",\r\n \"creationTime\": \"2017-06-14T23:39:17.895169Z\",\r\n \"lastModifiedTime\": \"2017-06-14T23:39:17.895169Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake17622\",\r\n \"name\": \"testdatalake17622\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake15484.azuredatalakestore.net\",\r\n \"accountId\": \"ba029a58-9ae3-4b74-aaf7-674b5569196e\",\r\n \"creationTime\": \"2017-12-22T22:27:28.7867687Z\",\r\n \"lastModifiedTime\": \"2017-12-22T22:27:28.7867687Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake15484\",\r\n \"name\": \"testdatalake15484\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -594,7 +594,7 @@
"close"
],
"Date": [
- "Wed, 14 Jun 2017 23:39:48 GMT"
+ "Fri, 22 Dec 2017 22:28:04 GMT"
],
"Pragma": [
"no-cache"
@@ -606,7 +606,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "3a6c1fac-fe43-4fa5-a974-fe9ce9a26cfb"
+ "b6e212c4-5cec-49ef-854e-3724cfb814db"
],
"X-Content-Type-Options": [
"nosniff"
@@ -618,13 +618,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14997"
],
"x-ms-correlation-request-id": [
- "b8bf6daa-b272-490b-a1c8-20098943955a"
+ "b725dc2b-fdc9-4e81-9bf7-f63cebf657d2"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233948Z:b8bf6daa-b272-490b-a1c8-20098943955a"
+ "WESTUS2:20171222T222804Z:b725dc2b-fdc9-4e81-9bf7-f63cebf657d2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -633,23 +633,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake17622?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE3NjIyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake15484?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc1NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE1NDg0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e174ad52-7e63-4ab4-b465-c003f9d633c5"
+ "781dd8db-2ffb-46f0-b0ff-b61b70dfd050"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake17622.azuredatalakestore.net\",\r\n \"accountId\": \"f6ba7965-dd63-4017-b723-1e35c0555a5d\",\r\n \"creationTime\": \"2017-06-14T23:39:17.895169Z\",\r\n \"lastModifiedTime\": \"2017-06-14T23:39:17.895169Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake17622\",\r\n \"name\": \"testdatalake17622\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake15484.azuredatalakestore.net\",\r\n \"accountId\": \"ba029a58-9ae3-4b74-aaf7-674b5569196e\",\r\n \"creationTime\": \"2017-12-22T22:27:28.7867687Z\",\r\n \"lastModifiedTime\": \"2017-12-22T22:27:28.7867687Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake15484\",\r\n \"name\": \"testdatalake15484\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -664,7 +664,7 @@
"close"
],
"Date": [
- "Wed, 14 Jun 2017 23:39:48 GMT"
+ "Fri, 22 Dec 2017 22:28:05 GMT"
],
"Pragma": [
"no-cache"
@@ -676,7 +676,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "c7808c47-3b20-4c1a-8824-e2597a9ab227"
+ "e704c466-85b1-4bd5-931c-0bf41dddf907"
],
"X-Content-Type-Options": [
"nosniff"
@@ -688,13 +688,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14997"
],
"x-ms-correlation-request-id": [
- "21133966-13f3-4925-8336-a1371c67aa87"
+ "7e79059a-b9af-4715-810e-8c315878d95a"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233949Z:21133966-13f3-4925-8336-a1371c67aa87"
+ "WESTUS2:20171222T222805Z:7e79059a-b9af-4715-810e-8c315878d95a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -703,23 +703,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake17622?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE3NjIyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake15484?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc1NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE1NDg0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "43426524-d2b3-4177-adaf-54575c2920c7"
+ "5d764a44-4a0f-480a-a6d0-1fe0ea220d8f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake17622.azuredatalakestore.net\",\r\n \"accountId\": \"f6ba7965-dd63-4017-b723-1e35c0555a5d\",\r\n \"creationTime\": \"2017-06-14T23:39:17.895169Z\",\r\n \"lastModifiedTime\": \"2017-06-14T23:39:17.895169Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake17622\",\r\n \"name\": \"testdatalake17622\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake15484.azuredatalakestore.net\",\r\n \"accountId\": \"ba029a58-9ae3-4b74-aaf7-674b5569196e\",\r\n \"creationTime\": \"2017-12-22T22:27:28.7867687Z\",\r\n \"lastModifiedTime\": \"2017-12-22T22:27:28.7867687Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake15484\",\r\n \"name\": \"testdatalake15484\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -734,7 +734,7 @@
"close"
],
"Date": [
- "Wed, 14 Jun 2017 23:40:23 GMT"
+ "Fri, 22 Dec 2017 22:28:41 GMT"
],
"Pragma": [
"no-cache"
@@ -746,7 +746,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "6d25af45-aea8-45b5-b2ff-560ca5645b16"
+ "ce2433d4-30ae-4aba-a603-8d386e8b4624"
],
"X-Content-Type-Options": [
"nosniff"
@@ -758,13 +758,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14994"
],
"x-ms-correlation-request-id": [
- "bfd6ba7f-8b0c-4164-ac78-617efbb39b45"
+ "2f713919-f550-4c77-a959-6b6851e02e2f"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T234023Z:bfd6ba7f-8b0c-4164-ac78-617efbb39b45"
+ "WESTUS2:20171222T222842Z:2f713919-f550-4c77-a959-6b6851e02e2f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -773,8 +773,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake17622?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE3NjIyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake15484?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc1NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE1NDg0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
@@ -785,20 +785,20 @@
"31"
],
"x-ms-client-request-id": [
- "0e9d152a-9635-4560-90b5-1aad77a1ace5"
+ "948af971-a59b-4d4e-9d7b-9759c39a9219"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f6ba7965-dd63-4017-b723-1e35c0555a5d\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake17622\",\r\n \"name\": \"testdatalake17622\",\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 \"accountId\": \"ba029a58-9ae3-4b74-aaf7-674b5569196e\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake15484\",\r\n \"name\": \"testdatalake15484\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "421"
+ "365"
],
"Content-Type": [
"application/json"
@@ -813,13 +813,13 @@
"close"
],
"Date": [
- "Wed, 14 Jun 2017 23:39:16 GMT"
+ "Fri, 22 Dec 2017 22:27:27 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake17622/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake15484/operationresults/0?api-version=2016-11-01"
],
"Retry-After": [
"10"
@@ -828,10 +828,10 @@
"Microsoft-IIS/8.5"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f6ba7965-dd63-4017-b723-1e35c0555a5d0?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ba029a58-9ae3-4b74-aaf7-674b5569196e0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "3c41038f-9878-4bd3-a3d1-82a0eb5c8e7d"
+ "72579ba9-e39b-4dda-8957-1459aaa8e764"
],
"X-Content-Type-Options": [
"nosniff"
@@ -846,10 +846,10 @@
"1199"
],
"x-ms-correlation-request-id": [
- "3ed8afab-a82b-4d90-876d-2fa53e7a8e34"
+ "bed98d39-3bd4-4d3e-b47b-2f72033f11a6"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233917Z:3ed8afab-a82b-4d90-876d-2fa53e7a8e34"
+ "WESTUS2:20171222T222727Z:bed98d39-3bd4-4d3e-b47b-2f72033f11a6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -858,17 +858,17 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f6ba7965-dd63-4017-b723-1e35c0555a5d0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2Y2YmE3OTY1LWRkNjMtNDAxNy1iNzIzLTFlMzVjMDU1NWE1ZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ba029a58-9ae3-4b74-aaf7-674b5569196e0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2JhMDI5YTU4LTlhZTMtNGI3NC1hYWY3LTY3NGI1NTY5MTk2ZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -883,7 +883,7 @@
"close"
],
"Date": [
- "Wed, 14 Jun 2017 23:39:47 GMT"
+ "Fri, 22 Dec 2017 22:27:37 GMT"
],
"Pragma": [
"no-cache"
@@ -895,7 +895,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "9abe83ae-4655-4d18-8f8d-0b3d7eeded8d"
+ "ed068a46-d144-4783-a572-2eba78b91fc6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -907,13 +907,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14995"
],
"x-ms-correlation-request-id": [
- "64c44524-2bd5-447d-aaf4-01d4a86bad2f"
+ "f3b13d8e-dba3-4054-a7c5-1491d0f84cf1"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233948Z:64c44524-2bd5-447d-aaf4-01d4a86bad2f"
+ "WESTUS2:20171222T222738Z:f3b13d8e-dba3-4054-a7c5-1491d0f84cf1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -922,29 +922,20 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake23017?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIzMDE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ba029a58-9ae3-4b74-aaf7-674b5569196e0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2JhMDI5YTU4LTlhZTMtNGI3NC1hYWY3LTY3NGI1NTY5MTk2ZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "e23f52d2-e20b-40bf-86d3-d2e36003a8d7"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake23017' under resource group 'rgaba12387' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "164"
- ],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
@@ -952,42 +943,60 @@
"Cache-Control": [
"no-cache"
],
+ "Connection": [
+ "close"
+ ],
"Date": [
- "Wed, 14 Jun 2017 23:39:48 GMT"
+ "Fri, 22 Dec 2017 22:27:48 GMT"
],
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
],
"x-ms-request-id": [
- "bcf01554-f2bc-4095-9ca3-faba73725c50"
+ "922cf721-4d8c-42c0-af97-bbd84872fa9e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
],
"x-ms-correlation-request-id": [
- "bcf01554-f2bc-4095-9ca3-faba73725c50"
+ "dff63b7b-bee9-4a38-9ed3-88d992e9a16a"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233949Z:bcf01554-f2bc-4095-9ca3-faba73725c50"
+ "WESTUS2:20171222T222748Z:dff63b7b-bee9-4a38-9ed3-88d992e9a16a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
]
},
- "StatusCode": 404
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake23017?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIzMDE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ba029a58-9ae3-4b74-aaf7-674b5569196e0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2JhMDI5YTU4LTlhZTMtNGI3NC1hYWY3LTY3NGI1NTY5MTk2ZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake23017.azuredatalakestore.net\",\r\n \"accountId\": \"3beae955-b84a-4ed2-929a-17a308d5f10f\",\r\n \"creationTime\": \"2017-06-14T23:39:51.7875058Z\",\r\n \"lastModifiedTime\": \"2017-06-14T23:39:51.7875058Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake23017\",\r\n \"name\": \"testdatalake23017\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -1002,7 +1011,7 @@
"close"
],
"Date": [
- "Wed, 14 Jun 2017 23:40:22 GMT"
+ "Fri, 22 Dec 2017 22:28:03 GMT"
],
"Pragma": [
"no-cache"
@@ -1014,7 +1023,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "a0031663-8d9f-4017-bb32-7470de8d359e"
+ "f9554fb0-478d-40b7-8a40-7ee59de682e4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1026,13 +1035,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14999"
],
"x-ms-correlation-request-id": [
- "70c254ac-bbf3-4c38-946d-81f68118941d"
+ "e1926be7-056f-4cf1-8135-a0cc18b45dd5"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T234022Z:70c254ac-bbf3-4c38-946d-81f68118941d"
+ "WESTUS2:20171222T222803Z:e1926be7-056f-4cf1-8135-a0cc18b45dd5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1041,26 +1050,29 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake23017?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIzMDE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake24981?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc1NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0OTgxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6025a105-4323-4733-ba22-f0b68b7d1326"
+ "47195295-811b-4b4a-a275-5a746282cb63"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake23017.azuredatalakestore.net\",\r\n \"accountId\": \"3beae955-b84a-4ed2-929a-17a308d5f10f\",\r\n \"creationTime\": \"2017-06-14T23:39:51.7875058Z\",\r\n \"lastModifiedTime\": \"2017-06-14T23:39:51.7875058Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake23017\",\r\n \"name\": \"testdatalake23017\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake24981' under resource group 'rgaba17557' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "164"
+ ],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1068,76 +1080,43 @@
"Cache-Control": [
"no-cache"
],
- "Connection": [
- "close"
- ],
"Date": [
- "Wed, 14 Jun 2017 23:40:22 GMT"
+ "Fri, 22 Dec 2017 22:28:05 GMT"
],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
+ "x-ms-failure-cause": [
+ "gateway"
],
"x-ms-request-id": [
- "44bb9e44-79c8-4ee0-985e-cf576da3cd26"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "caeb3ce0-281c-4e42-9781-de394477209f"
],
"x-ms-correlation-request-id": [
- "b845deae-2818-418e-8e45-1f559f0262ef"
+ "caeb3ce0-281c-4e42-9781-de394477209f"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T234023Z:b845deae-2818-418e-8e45-1f559f0262ef"
+ "WESTUS2:20171222T222806Z:caeb3ce0-281c-4e42-9781-de394477209f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake23017?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIzMDE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake24981?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc1NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0OTgxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
- "x-ms-client-request-id": [
- "d440d6c6-05de-4479-bf44-7bf9da1a090d"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"3beae955-b84a-4ed2-929a-17a308d5f10f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake23017\",\r\n \"name\": \"testdatalake23017\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake24981.azuredatalakestore.net\",\r\n \"accountId\": \"977adcb3-803b-4a28-98a3-ccc5d0d6ab96\",\r\n \"creationTime\": \"2017-12-22T22:28:10.2444447Z\",\r\n \"lastModifiedTime\": \"2017-12-22T22:28:10.2444447Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake24981\",\r\n \"name\": \"testdatalake24981\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "421"
- ],
"Content-Type": [
"application/json"
],
@@ -1151,25 +1130,19 @@
"close"
],
"Date": [
- "Wed, 14 Jun 2017 23:39:50 GMT"
+ "Fri, 22 Dec 2017 22:28:40 GMT"
],
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12387/providers/Microsoft.DataLakeStore/accounts/testdatalake23017/operationresults/0?api-version=2016-11-01"
- ],
- "Retry-After": [
- "10"
- ],
"Server": [
"Microsoft-IIS/8.5"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3beae955-b84a-4ed2-929a-17a308d5f10f0?api-version=2016-11-01&expanded=true"
+ "Vary": [
+ "Accept-Encoding"
],
"x-ms-request-id": [
- "2a3f7194-2a2e-41eb-b339-850b1add836d"
+ "ad673de2-ba61-47cf-9d29-73ab0b3d0286"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1180,33 +1153,39 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
],
"x-ms-correlation-request-id": [
- "b8200ef7-d7a1-488e-b953-4bf13f3014cb"
+ "c5529538-93da-4bc0-b723-f8102a4aae11"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T233951Z:b8200ef7-d7a1-488e-b953-4bf13f3014cb"
+ "WESTUS2:20171222T222841Z:c5529538-93da-4bc0-b723-f8102a4aae11"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3beae955-b84a-4ed2-929a-17a308d5f10f0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzNiZWFlOTU1LWI4NGEtNGVkMi05MjlhLTE3YTMwOGQ1ZjEwZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake24981?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc1NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0OTgxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "58e4952f-06f1-4e97-9976-ccacc56e0379"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.25009.03",
+ "FxVersion/4.6.25211.01",
"Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake24981.azuredatalakestore.net\",\r\n \"accountId\": \"977adcb3-803b-4a28-98a3-ccc5d0d6ab96\",\r\n \"creationTime\": \"2017-12-22T22:28:10.2444447Z\",\r\n \"lastModifiedTime\": \"2017-12-22T22:28:10.2444447Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake24981\",\r\n \"name\": \"testdatalake24981\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -1221,7 +1200,7 @@
"close"
],
"Date": [
- "Wed, 14 Jun 2017 23:40:21 GMT"
+ "Fri, 22 Dec 2017 22:28:41 GMT"
],
"Pragma": [
"no-cache"
@@ -1233,7 +1212,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "488a90e2-b48c-46c3-a39a-8d9069f004ff"
+ "480c2cd2-82f6-4eb0-8257-cddff7325d05"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1245,13 +1224,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14996"
],
"x-ms-correlation-request-id": [
- "05f3a750-bda1-49a2-be70-852cea88f7e0"
+ "49b6bb22-4d0c-4271-baed-03a1f87e74e1"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T234021Z:05f3a750-bda1-49a2-be70-852cea88f7e0"
+ "WESTUS2:20171222T222841Z:49b6bb22-4d0c-4271-baed-03a1f87e74e1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1260,32 +1239,32 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeAnalytics/accounts/testaba23508?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjM1MDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake24981?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc1NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0OTgxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake17622\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake17622\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "290"
+ "31"
],
"x-ms-client-request-id": [
- "a05d93fe-04b5-4a65-8799-32fdf71a2701"
+ "a603474e-0ce3-4047-bcb7-881cd96de268"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake17622\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake17622\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"093ab386-9217-416b-ac3f-d3da4f9e38d1\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeAnalytics/accounts/testaba23508\",\r\n \"name\": \"testaba23508\",\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 \"accountId\": \"977adcb3-803b-4a28-98a3-ccc5d0d6ab96\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake24981\",\r\n \"name\": \"testdatalake24981\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "573"
+ "365"
],
"Content-Type": [
"application/json"
@@ -1300,13 +1279,13 @@
"close"
],
"Date": [
- "Wed, 14 Jun 2017 23:40:25 GMT"
+ "Fri, 22 Dec 2017 22:28:07 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12387/providers/Microsoft.DataLakeAnalytics/accounts/testaba23508/operationresults/0?api-version=2016-11-01"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba17557/providers/Microsoft.DataLakeStore/accounts/testdatalake24981/operationresults/0?api-version=2016-11-01"
],
"Retry-After": [
"10"
@@ -1315,10 +1294,10 @@
"Microsoft-IIS/8.5"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/093ab386-9217-416b-ac3f-d3da4f9e38d10?api-version=2016-11-01&expanded=true"
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/977adcb3-803b-4a28-98a3-ccc5d0d6ab960?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "926a6333-1b59-4481-841f-744d790ba6cf"
+ "85bb96a6-93f7-4876-961d-fb5f6b13a8f6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1330,13 +1309,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "2ae40f4b-64db-4d33-862a-5410262837d3"
+ "71824b88-ddd2-4f10-be40-80d9ac74f62e"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T234025Z:2ae40f4b-64db-4d33-862a-5410262837d3"
+ "WESTUS2:20171222T222808Z:71824b88-ddd2-4f10-be40-80d9ac74f62e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1345,17 +1324,17 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/093ab386-9217-416b-ac3f-d3da4f9e38d10?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8wOTNhYjM4Ni05MjE3LTQxNmItYWMzZi1kM2RhNGY5ZTM4ZDEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/977adcb3-803b-4a28-98a3-ccc5d0d6ab960?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzk3N2FkY2IzLTgwM2ItNGEyOC05OGEzLWNjYzVkMGQ2YWI5NjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -1370,7 +1349,7 @@
"close"
],
"Date": [
- "Wed, 14 Jun 2017 23:40:54 GMT"
+ "Fri, 22 Dec 2017 22:28:18 GMT"
],
"Pragma": [
"no-cache"
@@ -1382,7 +1361,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "6b33330b-eb2d-4d37-9576-6abe9719a2df"
+ "8ccd5b1a-0a0f-4ad0-880d-7a30639ae48d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1394,13 +1373,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14998"
],
"x-ms-correlation-request-id": [
- "15edc69a-f1d9-4d64-bc52-e140fe235a96"
+ "48642de1-cec2-40d6-ac2d-4b8d9f566466"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T234055Z:15edc69a-f1d9-4d64-bc52-e140fe235a96"
+ "WESTUS2:20171222T222818Z:48642de1-cec2-40d6-ac2d-4b8d9f566466"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1409,17 +1388,17 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeAnalytics/accounts/testaba23508?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjM1MDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/977adcb3-803b-4a28-98a3-ccc5d0d6ab960?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzk3N2FkY2IzLTgwM2ItNGEyOC05OGEzLWNjYzVkMGQ2YWI5NjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake17622\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake17622\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 250,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba23508.azuredatalakeanalytics.net\",\r\n \"accountId\": \"093ab386-9217-416b-ac3f-d3da4f9e38d1\",\r\n \"creationTime\": \"2017-06-14T23:40:25.4257946Z\",\r\n \"lastModifiedTime\": \"2017-06-14T23:40:25.4257946Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeAnalytics/accounts/testaba23508\",\r\n \"name\": \"testaba23508\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -1434,7 +1413,7 @@
"close"
],
"Date": [
- "Wed, 14 Jun 2017 23:40:55 GMT"
+ "Fri, 22 Dec 2017 22:28:29 GMT"
],
"Pragma": [
"no-cache"
@@ -1446,7 +1425,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "a0711433-d4f1-4ec9-987b-d050ce814f35"
+ "019f558a-56a3-446a-a351-7c8e45235b89"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1458,13 +1437,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14995"
],
"x-ms-correlation-request-id": [
- "dd8f3162-ee94-4dcf-a1b8-12904ebf4aec"
+ "b31c0e78-8aa9-4f3d-a61d-47c8e9967103"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T234056Z:dd8f3162-ee94-4dcf-a1b8-12904ebf4aec"
+ "WESTUS2:20171222T222829Z:b31c0e78-8aa9-4f3d-a61d-47c8e9967103"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1473,23 +1452,17 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeAnalytics/accounts/testaba23508?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIzODcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjM1MDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/977adcb3-803b-4a28-98a3-ccc5d0d6ab960?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzk3N2FkY2IzLTgwM2ItNGEyOC05OGEzLWNjYzVkMGQ2YWI5NjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "d23bd611-e598-41f3-983b-8d33b550bdb8"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake17622\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake17622\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 250,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba23508.azuredatalakeanalytics.net\",\r\n \"accountId\": \"093ab386-9217-416b-ac3f-d3da4f9e38d1\",\r\n \"creationTime\": \"2017-06-14T23:40:25.4257946Z\",\r\n \"lastModifiedTime\": \"2017-06-14T23:40:25.4257946Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12387/providers/Microsoft.DataLakeAnalytics/accounts/testaba23508\",\r\n \"name\": \"testaba23508\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json"
@@ -1504,7 +1477,7 @@
"close"
],
"Date": [
- "Wed, 14 Jun 2017 23:40:56 GMT"
+ "Fri, 22 Dec 2017 22:28:39 GMT"
],
"Pragma": [
"no-cache"
@@ -1516,7 +1489,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "cefcf4d4-2f4d-49a3-9916-7933cfd21f52"
+ "05b3830d-ffd6-4b59-afc0-28e315f425fa"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1528,13 +1501,13 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14989"
],
"x-ms-correlation-request-id": [
- "bbc20f77-23e6-4a3b-b389-4b1bc6579feb"
+ "cdc37a89-a099-4043-9b99-0e3e4e65f165"
],
"x-ms-routing-request-id": [
- "WESTUS:20170614T234057Z:bbc20f77-23e6-4a3b-b389-4b1bc6579feb"
+ "WESTUS2:20171222T222840Z:cdc37a89-a099-4043-9b99-0e3e4e65f165"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1543,139 +1516,826 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/0c9313ec-57bd-42d7-b763-2ed4f026487b?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMGM5MzEzZWMtNTdiZC00MmQ3LWI3NjMtMmVkNGYwMjY0ODdiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeAnalytics/accounts/testaba2894?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc1NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjg5ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"name\": \"testjob18511\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb11013; CREATE DATABASE testdb11013; \\r\\n//Create Table\\r\\nCREATE TABLE testdb11013.dbo.testtbl1321\\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 (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb11013.dbo.testtbl1321 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb11013.dbo.testtvf11539;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb11013.dbo.testtvf11539()\\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 testdb11013.dbo.testview17897 \\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 testdb11013.dbo.testproc15909()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb11013.dbo.testview17897 \\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}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake15484\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake15484\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "2529"
+ "290"
],
"x-ms-client-request-id": [
- "5b003de0-1068-4eac-b5f8-70d8348d9550"
+ "5721942e-fe52-4fde-bf31-6b7db05a2f02"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"0c9313ec-57bd-42d7-b763-2ed4f026487b\",\r\n \"name\": \"testjob18511\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake15484\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake15484\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"bae054e3-7bc5-4bf6-b254-48dc19d8009a\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeAnalytics/accounts/testaba2894\",\r\n \"name\": \"testaba2894\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
"ResponseHeaders": {
+ "Content-Length": [
+ "515"
+ ],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
],
"Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
],
"Date": [
- "Wed, 14 Jun 2017 23:40:57 GMT"
+ "Fri, 22 Dec 2017 22:28:45 GMT"
],
- "Transfer-Encoding": [
- "chunked"
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba17557/providers/Microsoft.DataLakeAnalytics/accounts/testaba2894/operationresults/0?api-version=2016-11-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/bae054e3-7bc5-4bf6-b254-48dc19d8009a0?api-version=2016-11-01&expanded=true"
],
"x-ms-request-id": [
- "56e3df19-fc06-4e97-98cf-7dae0a44dad3"
+ "ab1262ce-2a90-4f92-a29e-17cd9b19f8df"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "5afdf00f-6b86-4538-8e94-f21964ee1c67"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T222845Z:5afdf00f-6b86-4538-8e94-f21964ee1c67"
+ ],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/Jobs/0c9313ec-57bd-42d7-b763-2ed4f026487b?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMGM5MzEzZWMtNTdiZC00MmQ3LWI3NjMtMmVkNGYwMjY0ODdiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/bae054e3-7bc5-4bf6-b254-48dc19d8009a0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iYWUwNTRlMy03YmM1LTRiZjYtYjI1NC00OGRjMTlkODAwOWEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "1f2ae052-30be-4cd6-91fd-f273b2f65541"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"0c9313ec-57bd-42d7-b763-2ed4f026487b\",\r\n \"name\": \"testjob18511\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-14T16:40:58.4352666-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11013; CREATE DATABASE testdb11013; \\n//Create Table\\nCREATE TABLE testdb11013.dbo.testtbl1321\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11013.dbo.testtbl1321 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11013.dbo.testtvf11539;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11013.dbo.testtvf11539()\\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 testdb11013.dbo.testview17897 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11013.dbo.testproc15909()\\nAS BEGIN\\n CREATE VIEW testdb11013.dbo.testview17897 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.2234195S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
],
"Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
],
"Date": [
- "Wed, 14 Jun 2017 23:40:58 GMT"
+ "Fri, 22 Dec 2017 22:28:55 GMT"
],
- "Transfer-Encoding": [
- "chunked"
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
],
"x-ms-request-id": [
- "ad0298d5-1a7f-4643-a81c-45f1c6f88947"
+ "720cb694-0437-432a-8ebf-f3af93e7dc39"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f48e337-cc49-41ca-bba2-a70ea2cbb8f9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T222856Z:1f48e337-cc49-41ca-bba2-a70ea2cbb8f9"
+ ],
"Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
+ "max-age=31536000; includeSubDomains"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/0c9313ec-57bd-42d7-b763-2ed4f026487b?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMGM5MzEzZWMtNTdiZC00MmQ3LWI3NjMtMmVkNGYwMjY0ODdiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/bae054e3-7bc5-4bf6-b254-48dc19d8009a0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iYWUwNTRlMy03YmM1LTRiZjYtYjI1NC00OGRjMTlkODAwOWEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "9a90e283-2c6a-4b4c-9cd4-08514462f69f"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"0c9313ec-57bd-42d7-b763-2ed4f026487b\",\r\n \"name\": \"testjob18511\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-14T16:40:58.4352666-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11013; CREATE DATABASE testdb11013; \\n//Create Table\\nCREATE TABLE testdb11013.dbo.testtbl1321\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11013.dbo.testtbl1321 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11013.dbo.testtvf11539;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11013.dbo.testtvf11539()\\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 testdb11013.dbo.testview17897 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11013.dbo.testproc15909()\\nAS BEGIN\\n CREATE VIEW testdb11013.dbo.testview17897 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.7250215S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
],
"Cache-Control": [
- "no-store, no-cache, max-age=0, private"
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:04 GMT"
+ "Fri, 22 Dec 2017 22:29:06 GMT"
],
- "Transfer-Encoding": [
- "chunked"
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
],
"x-ms-request-id": [
- "34d5cd3c-d21a-4d8e-ae38-0d06b51edb9e"
+ "b0683fbd-18ca-4f58-a1ad-0cbb3b2fdd74"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14991"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b809700-da7e-4f6d-b633-d7818b412e12"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T222907Z:3b809700-da7e-4f6d-b633-d7818b412e12"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/bae054e3-7bc5-4bf6-b254-48dc19d8009a0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iYWUwNTRlMy03YmM1LTRiZjYtYjI1NC00OGRjMTlkODAwOWEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:29:17 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "030dd3b5-4602-4691-bf8d-d470d7d3b415"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-correlation-request-id": [
+ "a346782d-74ce-43bb-851c-bef5bf395253"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T222918Z:a346782d-74ce-43bb-851c-bef5bf395253"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeAnalytics/accounts/testaba2894?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc1NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjg5ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake15484\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake15484\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba2894.azuredatalakeanalytics.net\",\r\n \"accountId\": \"bae054e3-7bc5-4bf6-b254-48dc19d8009a\",\r\n \"creationTime\": \"2017-12-22T22:28:46.0185268Z\",\r\n \"lastModifiedTime\": \"2017-12-22T22:28:46.0185268Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeAnalytics/accounts/testaba2894\",\r\n \"name\": \"testaba2894\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:29:17 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "4925ca9b-7fd8-4284-bec6-3acd525a5772"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-correlation-request-id": [
+ "abb31ab5-ab38-4900-bce6-3840284d56e1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T222918Z:abb31ab5-ab38-4900-bce6-3840284d56e1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeAnalytics/accounts/testaba2894?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc1NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjg5ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "918dc262-d887-47b3-9c55-dca22aa8bf7d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake15484\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake15484\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba2894.azuredatalakeanalytics.net\",\r\n \"accountId\": \"bae054e3-7bc5-4bf6-b254-48dc19d8009a\",\r\n \"creationTime\": \"2017-12-22T22:28:46.0185268Z\",\r\n \"lastModifiedTime\": \"2017-12-22T22:28:46.0185268Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba17557/providers/Microsoft.DataLakeAnalytics/accounts/testaba2894\",\r\n \"name\": \"testaba2894\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:29:19 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "6f8aeb72-2015-425d-8ae1-cbb365a2b339"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed89b412-7242-42b5-9116-5a9c87f14eb3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T222919Z:ed89b412-7242-42b5-9116-5a9c87f14eb3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZjFhNTg4ZmUtMjZmOS00ZDgzLTlmNWYtOGVhNmM1YmZhODIzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"name\": \"testjob12891\",\r\n \"degreeOfParallelism\": 2,\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb16283; CREATE DATABASE testdb16283; \\r\\n//Create Table\\r\\nCREATE TABLE testdb16283.dbo.testtbl1939\\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 (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb16283.dbo.testtbl1939 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb16283.dbo.testtvf1366;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb16283.dbo.testtvf1366()\\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 testdb16283.dbo.testview14640 \\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 testdb16283.dbo.testproc11892()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb16283.dbo.testview14640 \\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}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2527"
+ ],
+ "x-ms-client-request-id": [
+ "5f47680d-8552-4870-b08f-83de6b58caec"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823\",\r\n \"name\": \"testjob12891\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:34:20 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "fd66d384-71cf-4f41-b9fe-21af3655ba1e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZjFhNTg4ZmUtMjZmOS00ZDgzLTlmNWYtOGVhNmM1YmZhODIzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ffc07118-55d1-4e7f-bb33-f75bc817a5d2"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823\",\r\n \"name\": \"testjob12891\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16283; CREATE DATABASE testdb16283; \\n//Create Table\\nCREATE TABLE testdb16283.dbo.testtbl1939\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16283.dbo.testtbl1939 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16283.dbo.testtvf1366;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16283.dbo.testtvf1366()\\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 testdb16283.dbo.testview14640 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16283.dbo.testproc11892()\\nAS BEGIN\\n CREATE VIEW testdb16283.dbo.testview14640 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:34:21 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "7f52cda6-df44-46ea-b853-3385b89cfbc4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZjFhNTg4ZmUtMjZmOS00ZDgzLTlmNWYtOGVhNmM1YmZhODIzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b03d8037-c828-4369-90e5-13143e293113"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823\",\r\n \"name\": \"testjob12891\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T14:34:21.4608242-08:00\",\r\n \"details\": \"Compilation:7fdfa540-c082-4021-ab88-2b37870dc1b8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16283; CREATE DATABASE testdb16283; \\n//Create Table\\nCREATE TABLE testdb16283.dbo.testtbl1939\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16283.dbo.testtbl1939 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16283.dbo.testtvf1366;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16283.dbo.testtvf1366()\\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 testdb16283.dbo.testview14640 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16283.dbo.testproc11892()\\nAS BEGIN\\n CREATE VIEW testdb16283.dbo.testview14640 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.7255525S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:34:26 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "019a817c-e5d9-4790-94e6-9413067f5175"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZjFhNTg4ZmUtMjZmOS00ZDgzLTlmNWYtOGVhNmM1YmZhODIzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0adb1cc5-959d-4acf-a863-e70eb2f31ad4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823\",\r\n \"name\": \"testjob12891\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T14:34:21.4608242-08:00\",\r\n \"details\": \"Compilation:7fdfa540-c082-4021-ab88-2b37870dc1b8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16283; CREATE DATABASE testdb16283; \\n//Create Table\\nCREATE TABLE testdb16283.dbo.testtbl1939\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16283.dbo.testtbl1939 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16283.dbo.testtvf1366;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16283.dbo.testtvf1366()\\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 testdb16283.dbo.testview14640 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16283.dbo.testproc11892()\\nAS BEGIN\\n CREATE VIEW testdb16283.dbo.testview14640 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.0161461S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:34:31 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "1581cfb7-11ef-4d5d-9aa8-60048d441d4c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZjFhNTg4ZmUtMjZmOS00ZDgzLTlmNWYtOGVhNmM1YmZhODIzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7f639b80-4c14-49f7-a953-0b1048eb3cbb"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823\",\r\n \"name\": \"testjob12891\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T14:34:21.4608242-08:00\",\r\n \"details\": \"Compilation:7fdfa540-c082-4021-ab88-2b37870dc1b8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16283; CREATE DATABASE testdb16283; \\n//Create Table\\nCREATE TABLE testdb16283.dbo.testtbl1939\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16283.dbo.testtbl1939 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16283.dbo.testtvf1366;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16283.dbo.testtvf1366()\\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 testdb16283.dbo.testview14640 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16283.dbo.testproc11892()\\nAS BEGIN\\n CREATE VIEW testdb16283.dbo.testview14640 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT16.2349769S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:34:36 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "a34f6d1e-eefc-4fa8-a08d-a4d4325ac10e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZjFhNTg4ZmUtMjZmOS00ZDgzLTlmNWYtOGVhNmM1YmZhODIzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "42cc5601-8029-4baa-bd41-98a5dd23ebcf"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823\",\r\n \"name\": \"testjob12891\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T14:34:21.4608242-08:00\",\r\n \"details\": \"Compilation:7fdfa540-c082-4021-ab88-2b37870dc1b8;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16283; CREATE DATABASE testdb16283; \\n//Create Table\\nCREATE TABLE testdb16283.dbo.testtbl1939\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16283.dbo.testtbl1939 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16283.dbo.testtvf1366;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16283.dbo.testtvf1366()\\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 testdb16283.dbo.testview14640 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16283.dbo.testproc11892()\\nAS BEGIN\\n CREATE VIEW testdb16283.dbo.testview14640 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT21.4537824S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:34:42 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "89b2d221-a736-49e8-984f-9fbb58404462"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZjFhNTg4ZmUtMjZmOS00ZDgzLTlmNWYtOGVhNmM1YmZhODIzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cf6ce6b4-8d0a-4991-8817-4faaf685a817"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823\",\r\n \"name\": \"testjob12891\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T14:34:21.4608242-08:00\",\r\n \"details\": \"Compilation:7fdfa540-c082-4021-ab88-2b37870dc1b8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-22T14:34:44.2735269-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-22T14:34:44.2891735-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:e1d6a555-ada3-410d-a0e7-4b9fc5eb6b88\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-22T14:34:44.2891735-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_bcdc94ee\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_bcdc94ee\",\r\n \"rootProcessNodeId\": \"e1d6a555-ada3-410d-a0e7-4b9fc5eb6b88\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16283; CREATE DATABASE testdb16283; \\n//Create Table\\nCREATE TABLE testdb16283.dbo.testtbl1939\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16283.dbo.testtbl1939 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16283.dbo.testtvf1366;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16283.dbo.testtvf1366()\\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 testdb16283.dbo.testview14640 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16283.dbo.testproc11892()\\nAS BEGIN\\n CREATE VIEW testdb16283.dbo.testview14640 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/algebra.xml\",\r\n \"yarnApplicationId\": 446629,\r\n \"yarnApplicationTimeStamp\": 1513729150045,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT22.8127027S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156466S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:34:48 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "e26049d6-8d31-44f9-8a6a-2d336269ce6b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZjFhNTg4ZmUtMjZmOS00ZDgzLTlmNWYtOGVhNmM1YmZhODIzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4fd95b9c-cb48-4b42-ae9f-991a49ce9392"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823\",\r\n \"name\": \"testjob12891\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"startTime\": \"2017-12-22T14:34:49.3517146-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T14:34:21.4608242-08:00\",\r\n \"details\": \"Compilation:7fdfa540-c082-4021-ab88-2b37870dc1b8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-22T14:34:44.2735269-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-22T14:34:44.2891735-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:e1d6a555-ada3-410d-a0e7-4b9fc5eb6b88\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-22T14:34:44.2891735-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_bcdc94ee\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-22T14:34:49.3517146-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_bcdc94ee\",\r\n \"rootProcessNodeId\": \"e1d6a555-ada3-410d-a0e7-4b9fc5eb6b88\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16283; CREATE DATABASE testdb16283; \\n//Create Table\\nCREATE TABLE testdb16283.dbo.testtbl1939\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16283.dbo.testtbl1939 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16283.dbo.testtvf1366;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16283.dbo.testtvf1366()\\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 testdb16283.dbo.testview14640 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16283.dbo.testproc11892()\\nAS BEGIN\\n CREATE VIEW testdb16283.dbo.testview14640 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/algebra.xml\",\r\n \"yarnApplicationId\": 446629,\r\n \"yarnApplicationTimeStamp\": 1513729150045,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT22.8127027S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156466S\",\r\n \"totalRunningTime\": \"PT3.9758495S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:34:53 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "d1acd44d-74fe-4d91-a39c-cdf2dcef5db7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvZjFhNTg4ZmUtMjZmOS00ZDgzLTlmNWYtOGVhNmM1YmZhODIzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "16092ce8-b290-4da7-aed5-c8f8a05c7474"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823\",\r\n \"name\": \"testjob12891\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"startTime\": \"2017-12-22T14:34:49.3517146-08:00\",\r\n \"endTime\": \"2017-12-22T14:34:56.1174047-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T14:34:20.6014487-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T14:34:21.4608242-08:00\",\r\n \"details\": \"Compilation:7fdfa540-c082-4021-ab88-2b37870dc1b8;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-22T14:34:44.2735269-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-22T14:34:44.2891735-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:e1d6a555-ada3-410d-a0e7-4b9fc5eb6b88\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-22T14:34:44.2891735-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_bcdc94ee\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-22T14:34:49.3517146-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-12-22T14:34:56.1174047-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_bcdc94ee\",\r\n \"rootProcessNodeId\": \"e1d6a555-ada3-410d-a0e7-4b9fc5eb6b88\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16283; CREATE DATABASE testdb16283; \\n//Create Table\\nCREATE TABLE testdb16283.dbo.testtbl1939\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16283.dbo.testtbl1939 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16283.dbo.testtvf1366;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16283.dbo.testtvf1366()\\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 testdb16283.dbo.testview14640 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16283.dbo.testproc11892()\\nAS BEGIN\\n CREATE VIEW testdb16283.dbo.testview14640 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake15484.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/22/34/f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823/algebra.xml\",\r\n \"yarnApplicationId\": 446629,\r\n \"yarnApplicationTimeStamp\": 1513729150045,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT22.8127027S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156466S\",\r\n \"totalRunningTime\": \"PT6.7656901S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:34:58 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "71007f7a-81d1-42f2-973c-33f632853a77"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1687,26 +2347,26 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/0c9313ec-57bd-42d7-b763-2ed4f026487b?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMGM5MzEzZWMtNTdiZC00MmQ3LWI3NjMtMmVkNGYwMjY0ODdiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "613d6b16-4b4a-4e2c-a753-c012876d7303"
+ "52ca9c01-c85f-435a-b4e5-f3bbb17fb452"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"0c9313ec-57bd-42d7-b763-2ed4f026487b\",\r\n \"name\": \"testjob18511\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-14T16:40:58.4352666-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11013; CREATE DATABASE testdb11013; \\n//Create Table\\nCREATE TABLE testdb11013.dbo.testtbl1321\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11013.dbo.testtbl1321 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11013.dbo.testtvf11539;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11013.dbo.testtvf11539()\\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 testdb11013.dbo.testview17897 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11013.dbo.testproc15909()\\nAS BEGIN\\n CREATE VIEW testdb11013.dbo.testview17897 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.9126398S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#databases\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"version\": \"f20047f5-6a1d-4d69-b32e-a68162a836f8\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"version\": \"a00a1bba-9073-4289-90e4-1cc6b58981b5\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -1715,13 +2375,16 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:08 GMT"
+ "Fri, 22 Dec 2017 22:35:04 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "6b8ed4fe-f2c3-42a7-82b2-f346c840282b"
+ "02355a4f-78b9-47c6-b533-435d55279363"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1733,26 +2396,26 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/0c9313ec-57bd-42d7-b763-2ed4f026487b?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMGM5MzEzZWMtNTdiZC00MmQ3LWI3NjMtMmVkNGYwMjY0ODdiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb16283?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d654ea6f-5771-488d-8475-7c6ff166cd78"
+ "6bfa9580-e66e-4dcb-b5c7-06858521f12d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"0c9313ec-57bd-42d7-b763-2ed4f026487b\",\r\n \"name\": \"testjob18511\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-14T16:40:58.4352666-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-06-14T16:41:11.1121067-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-06-14T16:41:11.1277323-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:d0f64d8d-1133-4689-aaa5-b6bb97a53d46\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-06-14T16:41:11.1277323-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5370780\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5370780\",\r\n \"rootProcessNodeId\": \"d0f64d8d-1133-4689-aaa5-b6bb97a53d46\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11013; CREATE DATABASE testdb11013; \\n//Create Table\\nCREATE TABLE testdb11013.dbo.testtbl1321\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11013.dbo.testtbl1321 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11013.dbo.testtvf11539;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11013.dbo.testtvf11539()\\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 testdb11013.dbo.testview17897 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11013.dbo.testproc15909()\\nAS BEGIN\\n CREATE VIEW testdb11013.dbo.testview17897 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/algebra.xml\",\r\n \"yarnApplicationId\": 492637,\r\n \"yarnApplicationTimeStamp\": 1496985982015,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.6768401S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#databases/$entity\",\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"version\": \"a00a1bba-9073-4289-90e4-1cc6b58981b5\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -1761,13 +2424,16 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:14 GMT"
+ "Fri, 22 Dec 2017 22:35:04 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "94eef81f-b0f6-4d21-acb9-090ac9cd442f"
+ "733ab106-8907-4395-bcde-36af29090a3f"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1779,26 +2445,26 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/0c9313ec-57bd-42d7-b763-2ed4f026487b?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMGM5MzEzZWMtNTdiZC00MmQ3LWI3NjMtMmVkNGYwMjY0ODdiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb16283/schemas/dbo/tables?basic=false&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvc2NoZW1hcy9kYm8vdGFibGVzP2Jhc2ljPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8579a159-92b2-4dc8-ad5d-3023b2710672"
+ "f08bf9ee-d0fb-42cc-9f87-27f69b7bee8d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"0c9313ec-57bd-42d7-b763-2ed4f026487b\",\r\n \"name\": \"testjob18511\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"startTime\": \"2017-06-14T16:41:19.1591011-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-14T16:40:58.4352666-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-06-14T16:41:11.1121067-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-06-14T16:41:11.1277323-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:d0f64d8d-1133-4689-aaa5-b6bb97a53d46\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-06-14T16:41:11.1277323-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5370780\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-06-14T16:41:19.1591011-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5370780\",\r\n \"rootProcessNodeId\": \"d0f64d8d-1133-4689-aaa5-b6bb97a53d46\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11013; CREATE DATABASE testdb11013; \\n//Create Table\\nCREATE TABLE testdb11013.dbo.testtbl1321\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11013.dbo.testtbl1321 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11013.dbo.testtvf11539;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11013.dbo.testtvf11539()\\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 testdb11013.dbo.testview17897 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11013.dbo.testproc15909()\\nAS BEGIN\\n CREATE VIEW testdb11013.dbo.testview17897 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/algebra.xml\",\r\n \"yarnApplicationId\": 492637,\r\n \"yarnApplicationTimeStamp\": 1496985982015,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.6768401S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT0.5327824S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"tableName\": \"testtbl1939\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"fbb2bda1-71d4-4361-8988-a97e13b753fc\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2017-12-22T22:34:52.027-08:00\",\r\n \"updateTime\": \"2017-12-22T22:34:52.027-08:00\",\r\n \"version\": \"a7ea65f5-6916-4174-8d7c-1050427536a4\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -1807,13 +2473,16 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:19 GMT"
+ "Fri, 22 Dec 2017 22:35:04 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "cc35920f-0a5c-4c7d-a533-ab0318063fdd"
+ "bc5cdbfd-2063-40b8-ba41-cd36e5fdacad"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1825,26 +2494,26 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/0c9313ec-57bd-42d7-b763-2ed4f026487b?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMGM5MzEzZWMtNTdiZC00MmQ3LWI3NjMtMmVkNGYwMjY0ODdiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb16283/schemas/dbo/tables?basic=true&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvc2NoZW1hcy9kYm8vdGFibGVzP2Jhc2ljPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0829dc2c-1f92-483f-ae4d-2ae44d805670"
+ "44474b8a-aa27-497e-a744-e618a108cb03"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"0c9313ec-57bd-42d7-b763-2ed4f026487b\",\r\n \"name\": \"testjob18511\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"startTime\": \"2017-06-14T16:41:19.1591011-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-14T16:40:58.4352666-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-06-14T16:41:11.1121067-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-06-14T16:41:11.1277323-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:d0f64d8d-1133-4689-aaa5-b6bb97a53d46\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-06-14T16:41:11.1277323-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5370780\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-06-14T16:41:19.1591011-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5370780\",\r\n \"rootProcessNodeId\": \"d0f64d8d-1133-4689-aaa5-b6bb97a53d46\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11013; CREATE DATABASE testdb11013; \\n//Create Table\\nCREATE TABLE testdb11013.dbo.testtbl1321\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11013.dbo.testtbl1321 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11013.dbo.testtvf11539;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11013.dbo.testtvf11539()\\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 testdb11013.dbo.testview17897 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11013.dbo.testproc15909()\\nAS BEGIN\\n CREATE VIEW testdb11013.dbo.testview17897 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/algebra.xml\",\r\n \"yarnApplicationId\": 492637,\r\n \"yarnApplicationTimeStamp\": 1496985982015,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.6768401S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT5.7031986S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"tableName\": \"testtbl1939\",\r\n \"columnList\": [],\r\n \"indexList\": [],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": null,\r\n \"updateTime\": null,\r\n \"version\": \"a7ea65f5-6916-4174-8d7c-1050427536a4\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -1853,13 +2522,16 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:24 GMT"
+ "Fri, 22 Dec 2017 22:35:05 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "6493b97b-ead4-46e9-b916-7055cea57cf6"
+ "826d663c-775f-4b20-8804-6b1ebe2cb2fd"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1871,26 +2543,26 @@
"StatusCode": 200
},
{
- "RequestUri": "/Jobs/0c9313ec-57bd-42d7-b763-2ed4f026487b?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvMGM5MzEzZWMtNTdiZC00MmQ3LWI3NjMtMmVkNGYwMjY0ODdiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb16283/tables?basic=false&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvdGFibGVzP2Jhc2ljPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cdd8c52f-7247-40a2-99f0-4476ae04755f"
+ "ebd1919f-64eb-4155-9b6f-6e152a609c58"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"jobId\": \"0c9313ec-57bd-42d7-b763-2ed4f026487b\",\r\n \"name\": \"testjob18511\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"startTime\": \"2017-06-14T16:41:19.1591011-07:00\",\r\n \"endTime\": \"2017-06-14T16:41:26.2060764-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-14T16:40:58.0289898-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-14T16:40:58.4352666-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-06-14T16:41:11.1121067-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-06-14T16:41:11.1277323-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:d0f64d8d-1133-4689-aaa5-b6bb97a53d46\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-06-14T16:41:11.1277323-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5370780\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-06-14T16:41:19.1591011-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-06-14T16:41:26.2060764-07:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5370780\",\r\n \"rootProcessNodeId\": \"d0f64d8d-1133-4689-aaa5-b6bb97a53d46\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11013; CREATE DATABASE testdb11013; \\n//Create Table\\nCREATE TABLE testdb11013.dbo.testtbl1321\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11013.dbo.testtbl1321 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11013.dbo.testtvf11539;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11013.dbo.testtvf11539()\\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 testdb11013.dbo.testview17897 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11013.dbo.testproc15909()\\nAS BEGIN\\n CREATE VIEW testdb11013.dbo.testview17897 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake17622.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/14/23/40/0c9313ec-57bd-42d7-b763-2ed4f026487b/algebra.xml\",\r\n \"yarnApplicationId\": 492637,\r\n \"yarnApplicationTimeStamp\": 1496985982015,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.6768401S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156256S\",\r\n \"totalRunningTime\": \"PT7.0469753S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"tableName\": \"testtbl1939\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"fbb2bda1-71d4-4361-8988-a97e13b753fc\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2017-12-22T22:34:52.027-08:00\",\r\n \"updateTime\": \"2017-12-22T22:34:52.027-08:00\",\r\n \"version\": \"a7ea65f5-6916-4174-8d7c-1050427536a4\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json; odata.metadata=minimal; odata.streaming=true"
],
"Expires": [
"-1"
@@ -1899,13 +2571,16 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:30 GMT"
+ "Fri, 22 Dec 2017 22:35:05 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "a7aa7e1d-ca93-4744-9b71-c319cd1014d6"
+ "86a5ae90-1ef6-4bb1-a463-fd567d1ae73f"
+ ],
+ "OData-Version": [
+ "4.0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1917,23 +2592,72 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/catalog/usql/databases/testdb16283/tables?basic=true&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvdGFibGVzP2Jhc2ljPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d162c330-6a85-4603-bf0c-6fbd6e452336"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"tableName\": \"testtbl1939\",\r\n \"columnList\": [],\r\n \"indexList\": [],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": null,\r\n \"updateTime\": null,\r\n \"version\": \"a7ea65f5-6916-4174-8d7c-1050427536a4\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata.metadata=minimal; odata.streaming=true"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:35:05 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "e03e630b-f24f-46c0-9180-eef7b6c41a52"
+ ],
+ "OData-Version": [
+ "4.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/testdb16283/schemas/dbo/tables/testtbl1939?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxOTM5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ba115ed1-8c68-4d24-a752-86d023d8025d"
+ "e5431464-f61a-43b3-92dd-adbfa66e97a6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#databases\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"version\": \"a39cbe19-9ab1-4428-a928-f2cb52c692f1\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"version\": \"79c7ff3d-b369-4de1-808a-1ef8a641faab\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#tables/$entity\",\r\n \"tableName\": \"testtbl1939\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"fbb2bda1-71d4-4361-8988-a97e13b753fc\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2017-12-22T22:34:52.027-08:00\",\r\n \"updateTime\": \"2017-12-22T22:34:52.027-08:00\",\r\n \"version\": \"a7ea65f5-6916-4174-8d7c-1050427536a4\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -1945,13 +2669,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:30 GMT"
+ "Fri, 22 Dec 2017 22:35:05 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "05b9c315-fad1-4c6e-8e7f-8b0ffdfb0cf9"
+ "d73bb958-f5f3-4d05-86fe-ed62cf193e09"
],
"OData-Version": [
"4.0"
@@ -1966,23 +2690,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/catalog/usql/databases/testdb16283/schemas/dbo/tablevaluedfunctions?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvc2NoZW1hcy9kYm8vdGFibGV2YWx1ZWRmdW5jdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "74dbe46d-e406-498a-af29-a52976768809"
+ "7e80819c-ab26-440f-9b82-d1b912c92350"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#databases/$entity\",\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"version\": \"79c7ff3d-b369-4de1-808a-1ef8a641faab\"\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"tvfName\": \"testtvf1366\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16283.dbo.testtvf1366()\\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 \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2017-12-22T22:34:52.04-08:00\",\r\n \"updateTime\": \"2017-12-22T22:34:52.04-08:00\",\r\n \"version\": \"c351715e-7220-4a57-848a-3391e4417612\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -1994,13 +2718,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:31 GMT"
+ "Fri, 22 Dec 2017 22:35:06 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "3e2a509d-582e-467b-97c2-0c94871c90e5"
+ "3d8a94af-4b4e-486d-95a9-64ff136b904d"
],
"OData-Version": [
"4.0"
@@ -2015,23 +2739,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/schemas/dbo/tables?basic=false&api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvc2NoZW1hcy9kYm8vdGFibGVzP2Jhc2ljPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb16283/tablevaluedfunctions?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvdGFibGV2YWx1ZWRmdW5jdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "26dcbbd5-108d-4f43-922c-dc2c47d65a41"
+ "2aa11332-b208-4e71-9183-ab05fa82f82a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"testtbl1321\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"7e9f9e9c-f1d7-4052-975d-153497172148\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"b779c194-2846-49c3-a947-defe9e109041\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"tvfName\": \"testtvf1366\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16283.dbo.testtvf1366()\\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 \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2017-12-22T22:34:52.04-08:00\",\r\n \"updateTime\": \"2017-12-22T22:34:52.04-08:00\",\r\n \"version\": \"c351715e-7220-4a57-848a-3391e4417612\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2043,13 +2767,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:31 GMT"
+ "Fri, 22 Dec 2017 22:35:06 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "e4772cdf-0ef0-4e0e-bfe3-85b72499ca6f"
+ "e3589485-6a7e-49e1-b10d-c95ed303c071"
],
"OData-Version": [
"4.0"
@@ -2064,23 +2788,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/schemas/dbo/tables?basic=true&api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvc2NoZW1hcy9kYm8vdGFibGVzP2Jhc2ljPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/catalog/usql/databases/testdb16283/schemas/dbo/tablevaluedfunctions/testtvf1366?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvc2NoZW1hcy9kYm8vdGFibGV2YWx1ZWRmdW5jdGlvbnMvdGVzdHR2ZjEzNjY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "448a1ff2-4100-4e52-ba58-5773485963df"
+ "01a20fd8-efaa-4c6c-a20d-f92436e7d843"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"testtbl1321\",\r\n \"columnList\": [],\r\n \"indexList\": [],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"b779c194-2846-49c3-a947-defe9e109041\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions/$entity\",\r\n \"tvfName\": \"testtvf1366\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16283.dbo.testtvf1366()\\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 \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2017-12-22T22:34:52.04-08:00\",\r\n \"updateTime\": \"2017-12-22T22:34:52.04-08:00\",\r\n \"version\": \"c351715e-7220-4a57-848a-3391e4417612\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2092,13 +2816,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:31 GMT"
+ "Fri, 22 Dec 2017 22:35:06 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "7127e63d-c1ca-4620-9ac5-5eb8676b8b6b"
+ "33acf50b-c3a9-4f55-9228-b0a305d1390a"
],
"OData-Version": [
"4.0"
@@ -2113,23 +2837,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/tables?basic=false&api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvdGFibGVzP2Jhc2ljPWZhbHNlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb16283/schemas/dbo/views?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvc2NoZW1hcy9kYm8vdmlld3M/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a12eadc1-cff3-402e-9356-70b1c5f6597b"
+ "92528ed6-b14e-4c20-ab8e-b5fa120da79b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"testtbl1321\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"7e9f9e9c-f1d7-4052-975d-153497172148\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"b779c194-2846-49c3-a947-defe9e109041\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"viewName\": \"testview14640\",\r\n \"definition\": \"CREATE VIEW testdb16283.dbo.testview14640 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2017-12-22T22:34:52.04-08:00\",\r\n \"updateTime\": \"2017-12-22T22:34:52.04-08:00\",\r\n \"version\": \"1851bf25-1d0e-4677-b3b7-b666c3050df4\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2141,13 +2865,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:31 GMT"
+ "Fri, 22 Dec 2017 22:35:06 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "2cfe2d7a-5416-4dab-ab58-013e085ee51b"
+ "ffc2e0d7-e4e3-448a-b96b-3de496f787d1"
],
"OData-Version": [
"4.0"
@@ -2162,23 +2886,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/tables?basic=true&api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvdGFibGVzP2Jhc2ljPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/catalog/usql/databases/testdb16283/views?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvdmlld3M/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "42551d8b-3db4-4486-98f6-8a01fb1a38b9"
+ "906d3f55-175b-4b90-9d87-8293547e74d6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"testtbl1321\",\r\n \"columnList\": [],\r\n \"indexList\": [],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"b779c194-2846-49c3-a947-defe9e109041\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"viewName\": \"testview14640\",\r\n \"definition\": \"CREATE VIEW testdb16283.dbo.testview14640 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2017-12-22T22:34:52.04-08:00\",\r\n \"updateTime\": \"2017-12-22T22:34:52.04-08:00\",\r\n \"version\": \"1851bf25-1d0e-4677-b3b7-b666c3050df4\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2190,13 +2914,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:31 GMT"
+ "Fri, 22 Dec 2017 22:35:06 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "5ac8dd30-7c32-4fde-a269-f223713ed436"
+ "e9821980-e7c8-490e-a6d8-40398b37e5d9"
],
"OData-Version": [
"4.0"
@@ -2211,23 +2935,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/schemas/dbo/tables/testtbl1321?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxMzIxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb16283/schemas/dbo/views/testview14640?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvc2NoZW1hcy9kYm8vdmlld3MvdGVzdHZpZXcxNDY0MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c6e8cd19-c784-4c4f-8e5c-0dd58ca2ac00"
+ "261577b2-c1db-42c6-bb30-8bc05eff6777"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#tables/$entity\",\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"testtbl1321\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"7e9f9e9c-f1d7-4052-975d-153497172148\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"b779c194-2846-49c3-a947-defe9e109041\"\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#views/$entity\",\r\n \"viewName\": \"testview14640\",\r\n \"definition\": \"CREATE VIEW testdb16283.dbo.testview14640 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": \"2017-12-22T22:34:52.04-08:00\",\r\n \"updateTime\": \"2017-12-22T22:34:52.04-08:00\",\r\n \"version\": \"1851bf25-1d0e-4677-b3b7-b666c3050df4\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2239,13 +2963,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:32 GMT"
+ "Fri, 22 Dec 2017 22:35:07 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "9b209a09-6d78-4ca3-9cd6-8fcdd3152a22"
+ "6f622747-8cb2-4d10-83c3-ca266b932817"
],
"OData-Version": [
"4.0"
@@ -2260,23 +2984,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/schemas/dbo/tablevaluedfunctions?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvc2NoZW1hcy9kYm8vdGFibGV2YWx1ZWRmdW5jdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/catalog/usql/databases/testdb16283/schemas/dbo/procedures?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvc2NoZW1hcy9kYm8vcHJvY2VkdXJlcz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "02c47e50-c410-4552-bd1a-71622e09222c"
+ "fb4432ac-4b7a-47af-8e3a-86602151b8c3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"testtvf11539\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11013.dbo.testtvf11539()\\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\": \"65b9d9e7-657a-45be-9214-2c12ccacac9b\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#procedures\",\r\n \"value\": [\r\n {\r\n \"procName\": \"testproc11892\",\r\n \"definition\": \"CREATE PROCEDURE testdb16283.dbo.testproc11892()\\nAS BEGIN\\n CREATE VIEW testdb16283.dbo.testview14640 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": null,\r\n \"updateTime\": null,\r\n \"version\": \"7ae507ee-b27c-4afe-9454-710bdc8b8404\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2288,13 +3012,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:32 GMT"
+ "Fri, 22 Dec 2017 22:35:07 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "73d75fa4-3100-44ec-9432-4502cccffe02"
+ "e92a55b9-40c8-43d4-8a6e-e466dcf59cb1"
],
"OData-Version": [
"4.0"
@@ -2309,23 +3033,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/tablevaluedfunctions?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvdGFibGV2YWx1ZWRmdW5jdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/catalog/usql/databases/testdb16283/schemas/dbo/procedures/testproc11892?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvc2NoZW1hcy9kYm8vcHJvY2VkdXJlcy90ZXN0cHJvYzExODkyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4e046364-d4e5-402e-9b14-0a080afb9fac"
+ "683d58ad-c39e-4cc9-83c5-3f8cf75f1cd2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"testtvf11539\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11013.dbo.testtvf11539()\\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\": \"65b9d9e7-657a-45be-9214-2c12ccacac9b\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#procedures/$entity\",\r\n \"procName\": \"testproc11892\",\r\n \"definition\": \"CREATE PROCEDURE testdb16283.dbo.testproc11892()\\nAS BEGIN\\n CREATE VIEW testdb16283.dbo.testview14640 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"schemaName\": \"dbo\",\r\n \"createTime\": null,\r\n \"updateTime\": null,\r\n \"version\": \"7ae507ee-b27c-4afe-9454-710bdc8b8404\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2337,13 +3061,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:32 GMT"
+ "Fri, 22 Dec 2017 22:35:07 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "411c6790-f1c7-4574-8792-4ecac44ee896"
+ "c2ae9441-9dfe-4a39-b70d-42a6d47aa227"
],
"OData-Version": [
"4.0"
@@ -2358,23 +3082,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/schemas/dbo/tablevaluedfunctions/testtvf11539?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvc2NoZW1hcy9kYm8vdGFibGV2YWx1ZWRmdW5jdGlvbnMvdGVzdHR2ZjExNTM5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb16283/schemas/dbo/tables/testtbl1939/partitions?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxOTM5L3BhcnRpdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b32a65d9-52ff-4df8-9f5e-bfa66335220a"
+ "92babbd7-f2e6-4532-a061-dfc6057b62af"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions/$entity\",\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"testtvf11539\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11013.dbo.testtvf11539()\\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\": \"65b9d9e7-657a-45be-9214-2c12ccacac9b\"\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#partitions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"testtbl1939_Partition_333cc6df-fc8d-40fa-a082-048e4b2832b0\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createTime\": \"2017-12-22T22:34:52.04-08:00\",\r\n \"parentName\": {\r\n \"server\": \"bae054e3-7bc5-4bf6-b254-48dc19d8009a\",\r\n \"firstPart\": \"testdb16283\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"testtbl1939\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"1c8e385e-7eb4-431d-be6f-b6060a162e6b\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2386,13 +3110,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:32 GMT"
+ "Fri, 22 Dec 2017 22:35:07 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "1b948816-d708-4302-b2cd-959489d756ae"
+ "ad861c90-70a0-4292-9ea5-91397a1e52a1"
],
"OData-Version": [
"4.0"
@@ -2407,23 +3131,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/schemas/dbo/views?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvc2NoZW1hcy9kYm8vdmlld3M/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/catalog/usql/databases/testdb16283/schemas/dbo/tables/testtbl1939/partitions/testtbl1939_Partition_333cc6df-fc8d-40fa-a082-048e4b2832b0?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxOTM5L3BhcnRpdGlvbnMvdGVzdHRibDE5MzlfUGFydGl0aW9uXzMzM2NjNmRmLWZjOGQtNDBmYS1hMDgyLTA0OGU0YjI4MzJiMD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "09d2b019-cdd9-4fde-aecb-1aeaa5bbc04e"
+ "2871d833-234d-475f-9720-3e3817c21e86"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"testview17897\",\r\n \"definition\": \"CREATE VIEW testdb11013.dbo.testview17897 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"version\": \"a9b7c2e8-76c2-4300-9c45-9e5e809a476d\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#partitions/$entity\",\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"testdb16283\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"testtbl1939_Partition_333cc6df-fc8d-40fa-a082-048e4b2832b0\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createTime\": \"2017-12-22T22:34:52.04-08:00\",\r\n \"parentName\": {\r\n \"server\": \"bae054e3-7bc5-4bf6-b254-48dc19d8009a\",\r\n \"firstPart\": \"testdb16283\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"testtbl1939\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"1c8e385e-7eb4-431d-be6f-b6060a162e6b\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2435,13 +3159,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:33 GMT"
+ "Fri, 22 Dec 2017 22:35:08 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "6585241e-7fb6-46b3-91e2-5bf9d7431194"
+ "727c8f01-3d5d-4415-b40d-5bfdf065f2db"
],
"OData-Version": [
"4.0"
@@ -2456,23 +3180,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/views?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvdmlld3M/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/catalog/usql/databases/testdb16283/schemas/dbo/types?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvc2NoZW1hcy9kYm8vdHlwZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9218c7d0-c1f2-43dd-886d-a4425c320f3b"
+ "faead60a-24a2-43e5-8f79-bd92189f70de"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"testview17897\",\r\n \"definition\": \"CREATE VIEW testdb11013.dbo.testview17897 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"version\": \"a9b7c2e8-76c2-4300-9c45-9e5e809a476d\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#types\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 334,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"1137ad93-d19b-4d4e-b726-011f76d4d833\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBinary\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"systemTypeId\": 165,\r\n \"userTypeId\": 165,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b05e4357-12c7-461f-9559-4c39cfae1338\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBit\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"systemTypeId\": 104,\r\n \"userTypeId\": 104,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"caeb6f59-f027-4348-a3ff-f064531e0ee8\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlByte\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"systemTypeId\": 48,\r\n \"userTypeId\": 48,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f2583736-1f0e-4072-8a04-d83db5e08241\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDate\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"systemTypeId\": 42,\r\n \"userTypeId\": 42,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29f9721a-315b-498f-a304-762e0511226d\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDateTime\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDateTime\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDateTime\",\r\n \"systemTypeId\": 61,\r\n \"userTypeId\": 61,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"6879225d-44ff-4404-a0bd-05ee379c39db\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDecimal\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"systemTypeId\": 106,\r\n \"userTypeId\": 106,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"d6d8f781-23bf-48a6-a462-8946bab23c36\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDouble\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"systemTypeId\": 62,\r\n \"userTypeId\": 62,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db1bc9a7-f5da-4d64-9baa-399c9f72d6e2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlGuid\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"systemTypeId\": 36,\r\n \"userTypeId\": 36,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ab6715ed-cfba-4b5a-92e9-f86520b8e711\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt16\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"systemTypeId\": 52,\r\n \"userTypeId\": 52,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4ee64682-cbd4-40cc-90e9-c5de1433bbed\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt32\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"systemTypeId\": 56,\r\n \"userTypeId\": 56,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"9af787e7-9fc0-4819-80ac-0339ce031ab3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt64\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"systemTypeId\": 127,\r\n \"userTypeId\": 127,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"44d67b27-8bd8-4072-81ca-2d32adfdb17c\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 333,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"18cf5d12-3651-44fe-ad16-cf5068f0b112\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlMoney\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"systemTypeId\": 60,\r\n \"userTypeId\": 60,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"861e13ee-e110-4dd2-b0df-f2eb9a6b5bd2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlSingle\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"systemTypeId\": 59,\r\n \"userTypeId\": 59,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7037d7f1-e3d4-416f-bf81-285b630a75e4\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlString\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"systemTypeId\": 231,\r\n \"userTypeId\": 231,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a15306f5-43f5-433b-b795-ce02ee911953\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 332,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"f89f413d-bd5f-440a-b069-8fc345643648\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool\",\r\n \"fullCSharpName\": \"System.Boolean\",\r\n \"systemTypeId\": 104,\r\n \"userTypeId\": 104,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c04b91b8-2b7e-45b3-ada9-db5ede901672\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool?\",\r\n \"fullCSharpName\": \"System.Boolean?\",\r\n \"systemTypeId\": 104,\r\n \"userTypeId\": 104,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"42f3147a-ed9b-47ae-a8ad-aa2fbc51e0ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte\",\r\n \"fullCSharpName\": \"System.Byte\",\r\n \"systemTypeId\": 48,\r\n \"userTypeId\": 48,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"6a048add-f003-4d73-8471-3b0be963d1ac\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte?\",\r\n \"fullCSharpName\": \"System.Byte?\",\r\n \"systemTypeId\": 48,\r\n \"userTypeId\": 48,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c2623267-2a86-444a-a773-89783eae5b30\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte[]\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte[]\",\r\n \"fullCSharpName\": \"System.Byte[]\",\r\n \"systemTypeId\": 165,\r\n \"userTypeId\": 165,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"84506afa-d9ad-4bef-9e44-cd00f1f54ce3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char\",\r\n \"fullCSharpName\": \"System.Char\",\r\n \"systemTypeId\": 231,\r\n \"userTypeId\": 231,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"bb4bb082-4d9c-4ce4-aa1b-bfaea278ac92\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char?\",\r\n \"fullCSharpName\": \"System.Char?\",\r\n \"systemTypeId\": 231,\r\n \"userTypeId\": 231,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"748c6bfa-5a8e-43d4-823b-3b3be0d8b85a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime\",\r\n \"fullCSharpName\": \"System.DateTime\",\r\n \"systemTypeId\": 42,\r\n \"userTypeId\": 42,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4e348b46-7218-4c30-b879-ceee5a59e7bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime?\",\r\n \"fullCSharpName\": \"System.DateTime?\",\r\n \"systemTypeId\": 42,\r\n \"userTypeId\": 42,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"eb486159-acfa-4499-9b1a-e0ecda5d52a2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal\",\r\n \"fullCSharpName\": \"System.Decimal\",\r\n \"systemTypeId\": 106,\r\n \"userTypeId\": 106,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f29ebb5f-17e8-4448-8aec-1a6702380e75\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal?\",\r\n \"fullCSharpName\": \"System.Decimal?\",\r\n \"systemTypeId\": 106,\r\n \"userTypeId\": 106,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b78657ef-955b-4841-805e-bec1e9d11e37\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double\",\r\n \"fullCSharpName\": \"System.Double\",\r\n \"systemTypeId\": 62,\r\n \"userTypeId\": 62,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f3bbcc4e-d872-4bd1-8429-7082199016d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double?\",\r\n \"fullCSharpName\": \"System.Double?\",\r\n \"systemTypeId\": 62,\r\n \"userTypeId\": 62,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"5832365f-70cb-47f9-92db-46cf7903dffc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid\",\r\n \"fullCSharpName\": \"System.Guid\",\r\n \"systemTypeId\": 36,\r\n \"userTypeId\": 36,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ccccbe73-770a-4bc8-905f-2eec41e79736\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid?\",\r\n \"fullCSharpName\": \"System.Guid?\",\r\n \"systemTypeId\": 36,\r\n \"userTypeId\": 36,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db4c6514-17fa-4de1-ab25-a22817844593\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short\",\r\n \"fullCSharpName\": \"System.Int16\",\r\n \"systemTypeId\": 52,\r\n \"userTypeId\": 52,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2cca4ae1-4272-4ca4-832e-5bc22c486299\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short?\",\r\n \"fullCSharpName\": \"System.Int16?\",\r\n \"systemTypeId\": 52,\r\n \"userTypeId\": 52,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"cef0bb72-9079-471b-855c-cfb87b1dc11f\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int\",\r\n \"fullCSharpName\": \"System.Int32\",\r\n \"systemTypeId\": 56,\r\n \"userTypeId\": 56,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2a3f9560-1645-4e60-8ca5-9713f2ef8363\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int?\",\r\n \"fullCSharpName\": \"System.Int32?\",\r\n \"systemTypeId\": 56,\r\n \"userTypeId\": 56,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29fedecb-21d0-4fa8-bf6b-2539bee71bcc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long\",\r\n \"fullCSharpName\": \"System.Int64\",\r\n \"systemTypeId\": 127,\r\n \"userTypeId\": 127,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"14c67089-ce4d-4770-8425-a0c41788c3cd\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long?\",\r\n \"fullCSharpName\": \"System.Int64?\",\r\n \"systemTypeId\": 127,\r\n \"userTypeId\": 127,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"01b8cce9-d5e9-4f38-9f29-d5f3927d7407\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte\",\r\n \"fullCSharpName\": \"System.SByte\",\r\n \"systemTypeId\": 52,\r\n \"userTypeId\": 52,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"899a07dd-662c-4cd2-8f98-6ec34d739355\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte?\",\r\n \"fullCSharpName\": \"System.SByte?\",\r\n \"systemTypeId\": 52,\r\n \"userTypeId\": 52,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f76f7f1a-64d9-4c50-a38c-a6b2578f66d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float\",\r\n \"fullCSharpName\": \"System.Single\",\r\n \"systemTypeId\": 59,\r\n \"userTypeId\": 59,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"04ae7374-f270-48ba-b429-c7e07bfcde61\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float?\",\r\n \"fullCSharpName\": \"System.Single?\",\r\n \"systemTypeId\": 59,\r\n \"userTypeId\": 59,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f8f90902-84a6-449f-96fe-6710accc0f7a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.String\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"string\",\r\n \"fullCSharpName\": \"System.String\",\r\n \"systemTypeId\": 231,\r\n \"userTypeId\": 231,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"313664ea-0a0b-4016-8c25-a11052d885ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort\",\r\n \"fullCSharpName\": \"System.UInt16\",\r\n \"systemTypeId\": 56,\r\n \"userTypeId\": 56,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"1ee295be-df81-4f21-a17c-31205884958b\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort?\",\r\n \"fullCSharpName\": \"System.UInt16?\",\r\n \"systemTypeId\": 56,\r\n \"userTypeId\": 56,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a3228a28-dc3d-42f1-81d7-86899822af91\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint\",\r\n \"fullCSharpName\": \"System.UInt32\",\r\n \"systemTypeId\": 127,\r\n \"userTypeId\": 127,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"133275dc-ec4b-4662-86ee-f6d13b0e8b7e\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint?\",\r\n \"fullCSharpName\": \"System.UInt32?\",\r\n \"systemTypeId\": 127,\r\n \"userTypeId\": 127,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7292a0b6-ff2d-4c02-b256-63993c2b270a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong\",\r\n \"fullCSharpName\": \"System.UInt64\",\r\n \"systemTypeId\": 106,\r\n \"userTypeId\": 106,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"e80c1a1c-99d9-418c-9f66-097c048095bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong?\",\r\n \"fullCSharpName\": \"System.UInt64?\",\r\n \"systemTypeId\": 106,\r\n \"userTypeId\": 106,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"48cbabb8-03fc-4f00-bad6-0641a7f562c7\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2484,13 +3208,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:33 GMT"
+ "Fri, 22 Dec 2017 22:35:08 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "7a294e39-bd3d-481c-8352-4c93baeb3643"
+ "b224ae52-60ef-4de8-9808-f0f04bd125ba"
],
"OData-Version": [
"4.0"
@@ -2505,23 +3229,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/schemas/dbo/views/testview17897?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvc2NoZW1hcy9kYm8vdmlld3MvdGVzdHZpZXcxNzg5Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/catalog/usql/databases/testdb16283/schemas/dbo/types?$filter=isComplexType%20eq%20false&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvc2NoZW1hcy9kYm8vdHlwZXM/JGZpbHRlcj1pc0NvbXBsZXhUeXBlJTIwZXElMjBmYWxzZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9cb9ad34-7e59-4897-aaeb-027a298c2e2c"
+ "efc3e3a9-0011-452a-807d-5914d47ac8f8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#views/$entity\",\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"testview17897\",\r\n \"definition\": \"CREATE VIEW testdb11013.dbo.testview17897 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"version\": \"a9b7c2e8-76c2-4300-9c45-9e5e809a476d\"\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#types\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBinary\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"systemTypeId\": 165,\r\n \"userTypeId\": 165,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b05e4357-12c7-461f-9559-4c39cfae1338\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBit\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"systemTypeId\": 104,\r\n \"userTypeId\": 104,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"caeb6f59-f027-4348-a3ff-f064531e0ee8\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlByte\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"systemTypeId\": 48,\r\n \"userTypeId\": 48,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f2583736-1f0e-4072-8a04-d83db5e08241\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDate\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"systemTypeId\": 42,\r\n \"userTypeId\": 42,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29f9721a-315b-498f-a304-762e0511226d\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDateTime\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDateTime\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDateTime\",\r\n \"systemTypeId\": 61,\r\n \"userTypeId\": 61,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"6879225d-44ff-4404-a0bd-05ee379c39db\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDecimal\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"systemTypeId\": 106,\r\n \"userTypeId\": 106,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"d6d8f781-23bf-48a6-a462-8946bab23c36\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDouble\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"systemTypeId\": 62,\r\n \"userTypeId\": 62,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db1bc9a7-f5da-4d64-9baa-399c9f72d6e2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlGuid\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"systemTypeId\": 36,\r\n \"userTypeId\": 36,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ab6715ed-cfba-4b5a-92e9-f86520b8e711\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt16\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"systemTypeId\": 52,\r\n \"userTypeId\": 52,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4ee64682-cbd4-40cc-90e9-c5de1433bbed\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt32\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"systemTypeId\": 56,\r\n \"userTypeId\": 56,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"9af787e7-9fc0-4819-80ac-0339ce031ab3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt64\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"systemTypeId\": 127,\r\n \"userTypeId\": 127,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"44d67b27-8bd8-4072-81ca-2d32adfdb17c\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlMoney\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"systemTypeId\": 60,\r\n \"userTypeId\": 60,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"861e13ee-e110-4dd2-b0df-f2eb9a6b5bd2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlSingle\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"systemTypeId\": 59,\r\n \"userTypeId\": 59,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7037d7f1-e3d4-416f-bf81-285b630a75e4\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlString\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"systemTypeId\": 231,\r\n \"userTypeId\": 231,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a15306f5-43f5-433b-b795-ce02ee911953\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool\",\r\n \"fullCSharpName\": \"System.Boolean\",\r\n \"systemTypeId\": 104,\r\n \"userTypeId\": 104,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c04b91b8-2b7e-45b3-ada9-db5ede901672\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool?\",\r\n \"fullCSharpName\": \"System.Boolean?\",\r\n \"systemTypeId\": 104,\r\n \"userTypeId\": 104,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"42f3147a-ed9b-47ae-a8ad-aa2fbc51e0ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte\",\r\n \"fullCSharpName\": \"System.Byte\",\r\n \"systemTypeId\": 48,\r\n \"userTypeId\": 48,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"6a048add-f003-4d73-8471-3b0be963d1ac\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte?\",\r\n \"fullCSharpName\": \"System.Byte?\",\r\n \"systemTypeId\": 48,\r\n \"userTypeId\": 48,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c2623267-2a86-444a-a773-89783eae5b30\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte[]\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte[]\",\r\n \"fullCSharpName\": \"System.Byte[]\",\r\n \"systemTypeId\": 165,\r\n \"userTypeId\": 165,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"84506afa-d9ad-4bef-9e44-cd00f1f54ce3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char\",\r\n \"fullCSharpName\": \"System.Char\",\r\n \"systemTypeId\": 231,\r\n \"userTypeId\": 231,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"bb4bb082-4d9c-4ce4-aa1b-bfaea278ac92\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char?\",\r\n \"fullCSharpName\": \"System.Char?\",\r\n \"systemTypeId\": 231,\r\n \"userTypeId\": 231,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"748c6bfa-5a8e-43d4-823b-3b3be0d8b85a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime\",\r\n \"fullCSharpName\": \"System.DateTime\",\r\n \"systemTypeId\": 42,\r\n \"userTypeId\": 42,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4e348b46-7218-4c30-b879-ceee5a59e7bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime?\",\r\n \"fullCSharpName\": \"System.DateTime?\",\r\n \"systemTypeId\": 42,\r\n \"userTypeId\": 42,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"eb486159-acfa-4499-9b1a-e0ecda5d52a2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal\",\r\n \"fullCSharpName\": \"System.Decimal\",\r\n \"systemTypeId\": 106,\r\n \"userTypeId\": 106,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f29ebb5f-17e8-4448-8aec-1a6702380e75\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal?\",\r\n \"fullCSharpName\": \"System.Decimal?\",\r\n \"systemTypeId\": 106,\r\n \"userTypeId\": 106,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b78657ef-955b-4841-805e-bec1e9d11e37\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double\",\r\n \"fullCSharpName\": \"System.Double\",\r\n \"systemTypeId\": 62,\r\n \"userTypeId\": 62,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f3bbcc4e-d872-4bd1-8429-7082199016d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double?\",\r\n \"fullCSharpName\": \"System.Double?\",\r\n \"systemTypeId\": 62,\r\n \"userTypeId\": 62,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"5832365f-70cb-47f9-92db-46cf7903dffc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid\",\r\n \"fullCSharpName\": \"System.Guid\",\r\n \"systemTypeId\": 36,\r\n \"userTypeId\": 36,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ccccbe73-770a-4bc8-905f-2eec41e79736\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid?\",\r\n \"fullCSharpName\": \"System.Guid?\",\r\n \"systemTypeId\": 36,\r\n \"userTypeId\": 36,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db4c6514-17fa-4de1-ab25-a22817844593\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short\",\r\n \"fullCSharpName\": \"System.Int16\",\r\n \"systemTypeId\": 52,\r\n \"userTypeId\": 52,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2cca4ae1-4272-4ca4-832e-5bc22c486299\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short?\",\r\n \"fullCSharpName\": \"System.Int16?\",\r\n \"systemTypeId\": 52,\r\n \"userTypeId\": 52,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"cef0bb72-9079-471b-855c-cfb87b1dc11f\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int\",\r\n \"fullCSharpName\": \"System.Int32\",\r\n \"systemTypeId\": 56,\r\n \"userTypeId\": 56,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2a3f9560-1645-4e60-8ca5-9713f2ef8363\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int?\",\r\n \"fullCSharpName\": \"System.Int32?\",\r\n \"systemTypeId\": 56,\r\n \"userTypeId\": 56,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29fedecb-21d0-4fa8-bf6b-2539bee71bcc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long\",\r\n \"fullCSharpName\": \"System.Int64\",\r\n \"systemTypeId\": 127,\r\n \"userTypeId\": 127,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"14c67089-ce4d-4770-8425-a0c41788c3cd\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long?\",\r\n \"fullCSharpName\": \"System.Int64?\",\r\n \"systemTypeId\": 127,\r\n \"userTypeId\": 127,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"01b8cce9-d5e9-4f38-9f29-d5f3927d7407\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte\",\r\n \"fullCSharpName\": \"System.SByte\",\r\n \"systemTypeId\": 52,\r\n \"userTypeId\": 52,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"899a07dd-662c-4cd2-8f98-6ec34d739355\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte?\",\r\n \"fullCSharpName\": \"System.SByte?\",\r\n \"systemTypeId\": 52,\r\n \"userTypeId\": 52,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f76f7f1a-64d9-4c50-a38c-a6b2578f66d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float\",\r\n \"fullCSharpName\": \"System.Single\",\r\n \"systemTypeId\": 59,\r\n \"userTypeId\": 59,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"04ae7374-f270-48ba-b429-c7e07bfcde61\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float?\",\r\n \"fullCSharpName\": \"System.Single?\",\r\n \"systemTypeId\": 59,\r\n \"userTypeId\": 59,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f8f90902-84a6-449f-96fe-6710accc0f7a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.String\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"string\",\r\n \"fullCSharpName\": \"System.String\",\r\n \"systemTypeId\": 231,\r\n \"userTypeId\": 231,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"313664ea-0a0b-4016-8c25-a11052d885ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort\",\r\n \"fullCSharpName\": \"System.UInt16\",\r\n \"systemTypeId\": 56,\r\n \"userTypeId\": 56,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"1ee295be-df81-4f21-a17c-31205884958b\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort?\",\r\n \"fullCSharpName\": \"System.UInt16?\",\r\n \"systemTypeId\": 56,\r\n \"userTypeId\": 56,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a3228a28-dc3d-42f1-81d7-86899822af91\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint\",\r\n \"fullCSharpName\": \"System.UInt32\",\r\n \"systemTypeId\": 127,\r\n \"userTypeId\": 127,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"133275dc-ec4b-4662-86ee-f6d13b0e8b7e\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint?\",\r\n \"fullCSharpName\": \"System.UInt32?\",\r\n \"systemTypeId\": 127,\r\n \"userTypeId\": 127,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7292a0b6-ff2d-4c02-b256-63993c2b270a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong\",\r\n \"fullCSharpName\": \"System.UInt64\",\r\n \"systemTypeId\": 106,\r\n \"userTypeId\": 106,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"e80c1a1c-99d9-418c-9f66-097c048095bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba2894\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong?\",\r\n \"fullCSharpName\": \"System.UInt64?\",\r\n \"systemTypeId\": 106,\r\n \"userTypeId\": 106,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"48cbabb8-03fc-4f00-bad6-0641a7f562c7\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2533,13 +3257,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:33 GMT"
+ "Fri, 22 Dec 2017 22:35:08 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "2195fe5d-36a3-44e8-a16b-4225380ba718"
+ "db674a6a-c889-4558-b3ef-6cef9c9c9491"
],
"OData-Version": [
"4.0"
@@ -2554,23 +3278,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/schemas/dbo/procedures?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvc2NoZW1hcy9kYm8vcHJvY2VkdXJlcz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/catalog/usql/databases/testdb16283/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvYWNsP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce86f1e9-87f5-4e00-9149-91430fbf3b27"
+ "d4b4b60b-a0a4-46b3-8eb3-a918d45ea574"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#procedures\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"testproc15909\",\r\n \"definition\": \"CREATE PROCEDURE testdb11013.dbo.testproc15909()\\nAS BEGIN\\n CREATE VIEW testdb11013.dbo.testview17897 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"version\": \"b071dfdc-955a-481f-9a66-faf9e6b9ee31\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2582,13 +3306,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:33 GMT"
+ "Fri, 22 Dec 2017 22:35:09 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "36cdea6a-c1d8-4ff2-af0b-0b1876ddeea9"
+ "55dedbc4-7678-43e1-b2ee-43c0a96136b4"
],
"OData-Version": [
"4.0"
@@ -2603,23 +3327,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/schemas/dbo/procedures/testproc15909?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvc2NoZW1hcy9kYm8vcHJvY2VkdXJlcy90ZXN0cHJvYzE1OTA5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestUri": "/catalog/usql/databases/testdb16283/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvYWNsP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1d00bdb8-5f82-4836-901e-907dd70f4738"
+ "0fc3f935-821b-493c-a1dc-47096f5b442c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#procedures/$entity\",\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"testproc15909\",\r\n \"definition\": \"CREATE PROCEDURE testdb11013.dbo.testproc15909()\\nAS BEGIN\\n CREATE VIEW testdb11013.dbo.testview17897 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"version\": \"b071dfdc-955a-481f-9a66-faf9e6b9ee31\"\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"User\",\r\n \"principalId\": \"61cc3a50-2795-4c7c-a788-a81ea36c7acc\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2631,13 +3355,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:33 GMT"
+ "Fri, 22 Dec 2017 22:35:10 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "98ff8524-8e0a-49c8-b45d-e44297c06b3c"
+ "71553b36-19f5-4592-8622-71bd6616a8d2"
],
"OData-Version": [
"4.0"
@@ -2652,23 +3376,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/schemas/dbo/tables/testtbl1321/partitions?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxMzIxL3BhcnRpdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/catalog/usql/databases/testdb16283/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvYWNsP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a73c042-5fc5-4ab2-862f-eaab895ef95d"
+ "e490d787-9276-4bf2-a1da-d6f3a5a59187"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#partitions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"testtbl1321_Partition_cd229551-03da-4866-b88a-74f3ed9ee881\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createDate\": \"2017-06-14T23:41:18.857-07:00\",\r\n \"parentName\": {\r\n \"server\": \"093ab386-9217-416b-ac3f-d3da4f9e38d1\",\r\n \"firstPart\": \"testdb11013\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"testtbl1321\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"1ebaaacf-a4af-4a72-9293-f669c507fdd5\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2680,13 +3404,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:34 GMT"
+ "Fri, 22 Dec 2017 22:35:11 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "b415d543-816f-484d-973d-9c26c7cff166"
+ "38d00102-00f8-4cdf-81c3-be7a6b023318"
],
"OData-Version": [
"4.0"
@@ -2701,23 +3425,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/schemas/dbo/tables/testtbl1321/partitions/testtbl1321_Partition_cd229551-03da-4866-b88a-74f3ed9ee881?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxMzIxL3BhcnRpdGlvbnMvdGVzdHRibDEzMjFfUGFydGl0aW9uX2NkMjI5NTUxLTAzZGEtNDg2Ni1iODhhLTc0ZjNlZDllZTg4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "885acbd3-90ef-411e-9a13-cbe0c773ec0e"
+ "8d9549e6-4bbc-4395-b1ac-76185ce23ad7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#partitions/$entity\",\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"testdb11013\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"testtbl1321_Partition_cd229551-03da-4866-b88a-74f3ed9ee881\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createDate\": \"2017-06-14T23:41:18.857-07:00\",\r\n \"parentName\": {\r\n \"server\": \"093ab386-9217-416b-ac3f-d3da4f9e38d1\",\r\n \"firstPart\": \"testdb11013\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"testtbl1321\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"1ebaaacf-a4af-4a72-9293-f669c507fdd5\"\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2729,13 +3453,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:34 GMT"
+ "Fri, 22 Dec 2017 22:35:09 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "c5c49c6d-256b-4bda-8c4a-dd4d5c3b74f8"
+ "8fbe2886-cf85-4d70-a703-8360058103d4"
],
"OData-Version": [
"4.0"
@@ -2750,23 +3474,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/schemas/dbo/types?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvc2NoZW1hcy9kYm8vdHlwZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ea7a8c02-fb2f-4a41-a597-3d50d228d5c2"
+ "b96303b9-8fe6-4e0e-96f1-012491ec8341"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#types\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 334,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"1137ad93-d19b-4d4e-b726-011f76d4d833\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBinary\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"systemTypeId\": 173,\r\n \"userTypeId\": 173,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b05e4357-12c7-461f-9559-4c39cfae1338\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBit\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"systemTypeId\": 104,\r\n \"userTypeId\": 104,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"caeb6f59-f027-4348-a3ff-f064531e0ee8\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlByte\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"systemTypeId\": 48,\r\n \"userTypeId\": 48,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f2583736-1f0e-4072-8a04-d83db5e08241\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDate\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"systemTypeId\": 42,\r\n \"userTypeId\": 42,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29f9721a-315b-498f-a304-762e0511226d\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDecimal\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"systemTypeId\": 106,\r\n \"userTypeId\": 106,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"d6d8f781-23bf-48a6-a462-8946bab23c36\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDouble\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"systemTypeId\": 62,\r\n \"userTypeId\": 62,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db1bc9a7-f5da-4d64-9baa-399c9f72d6e2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlGuid\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"systemTypeId\": 36,\r\n \"userTypeId\": 36,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ab6715ed-cfba-4b5a-92e9-f86520b8e711\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt16\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"systemTypeId\": 52,\r\n \"userTypeId\": 52,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4ee64682-cbd4-40cc-90e9-c5de1433bbed\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt32\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"systemTypeId\": 56,\r\n \"userTypeId\": 56,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"9af787e7-9fc0-4819-80ac-0339ce031ab3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt64\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"systemTypeId\": 127,\r\n \"userTypeId\": 127,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"44d67b27-8bd8-4072-81ca-2d32adfdb17c\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 333,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"18cf5d12-3651-44fe-ad16-cf5068f0b112\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlMoney\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"systemTypeId\": 60,\r\n \"userTypeId\": 60,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"861e13ee-e110-4dd2-b0df-f2eb9a6b5bd2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlSingle\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"systemTypeId\": 59,\r\n \"userTypeId\": 59,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7037d7f1-e3d4-416f-bf81-285b630a75e4\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlString\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"systemTypeId\": 231,\r\n \"userTypeId\": 231,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a15306f5-43f5-433b-b795-ce02ee911953\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 332,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"f89f413d-bd5f-440a-b069-8fc345643648\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool\",\r\n \"fullCSharpName\": \"System.Boolean\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 300,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c04b91b8-2b7e-45b3-ada9-db5ede901672\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool?\",\r\n \"fullCSharpName\": \"System.Boolean?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 301,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"42f3147a-ed9b-47ae-a8ad-aa2fbc51e0ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte\",\r\n \"fullCSharpName\": \"System.Byte\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 302,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"6a048add-f003-4d73-8471-3b0be963d1ac\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte?\",\r\n \"fullCSharpName\": \"System.Byte?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 303,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c2623267-2a86-444a-a773-89783eae5b30\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte[]\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte[]\",\r\n \"fullCSharpName\": \"System.Byte[]\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 328,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"84506afa-d9ad-4bef-9e44-cd00f1f54ce3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char\",\r\n \"fullCSharpName\": \"System.Char\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 310,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"bb4bb082-4d9c-4ce4-aa1b-bfaea278ac92\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char?\",\r\n \"fullCSharpName\": \"System.Char?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 311,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"748c6bfa-5a8e-43d4-823b-3b3be0d8b85a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime\",\r\n \"fullCSharpName\": \"System.DateTime\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 326,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4e348b46-7218-4c30-b879-ceee5a59e7bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime?\",\r\n \"fullCSharpName\": \"System.DateTime?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 327,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"eb486159-acfa-4499-9b1a-e0ecda5d52a2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal\",\r\n \"fullCSharpName\": \"System.Decimal\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 324,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f29ebb5f-17e8-4448-8aec-1a6702380e75\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal?\",\r\n \"fullCSharpName\": \"System.Decimal?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 325,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b78657ef-955b-4841-805e-bec1e9d11e37\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double\",\r\n \"fullCSharpName\": \"System.Double\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 322,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f3bbcc4e-d872-4bd1-8429-7082199016d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double?\",\r\n \"fullCSharpName\": \"System.Double?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 323,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"5832365f-70cb-47f9-92db-46cf7903dffc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid\",\r\n \"fullCSharpName\": \"System.Guid\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 330,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ccccbe73-770a-4bc8-905f-2eec41e79736\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid?\",\r\n \"fullCSharpName\": \"System.Guid?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 331,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db4c6514-17fa-4de1-ab25-a22817844593\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short\",\r\n \"fullCSharpName\": \"System.Int16\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 306,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2cca4ae1-4272-4ca4-832e-5bc22c486299\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short?\",\r\n \"fullCSharpName\": \"System.Int16?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 307,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"cef0bb72-9079-471b-855c-cfb87b1dc11f\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int\",\r\n \"fullCSharpName\": \"System.Int32\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 312,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2a3f9560-1645-4e60-8ca5-9713f2ef8363\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int?\",\r\n \"fullCSharpName\": \"System.Int32?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 313,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29fedecb-21d0-4fa8-bf6b-2539bee71bcc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long\",\r\n \"fullCSharpName\": \"System.Int64\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 316,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"14c67089-ce4d-4770-8425-a0c41788c3cd\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long?\",\r\n \"fullCSharpName\": \"System.Int64?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 317,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"01b8cce9-d5e9-4f38-9f29-d5f3927d7407\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte\",\r\n \"fullCSharpName\": \"System.SByte\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 304,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"899a07dd-662c-4cd2-8f98-6ec34d739355\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte?\",\r\n \"fullCSharpName\": \"System.SByte?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 305,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f76f7f1a-64d9-4c50-a38c-a6b2578f66d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float\",\r\n \"fullCSharpName\": \"System.Single\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 320,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"04ae7374-f270-48ba-b429-c7e07bfcde61\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float?\",\r\n \"fullCSharpName\": \"System.Single?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 321,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f8f90902-84a6-449f-96fe-6710accc0f7a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.String\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"string\",\r\n \"fullCSharpName\": \"System.String\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 329,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"313664ea-0a0b-4016-8c25-a11052d885ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort\",\r\n \"fullCSharpName\": \"System.UInt16\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 308,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"1ee295be-df81-4f21-a17c-31205884958b\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort?\",\r\n \"fullCSharpName\": \"System.UInt16?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 309,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a3228a28-dc3d-42f1-81d7-86899822af91\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint\",\r\n \"fullCSharpName\": \"System.UInt32\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 314,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"133275dc-ec4b-4662-86ee-f6d13b0e8b7e\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint?\",\r\n \"fullCSharpName\": \"System.UInt32?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 315,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7292a0b6-ff2d-4c02-b256-63993c2b270a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong\",\r\n \"fullCSharpName\": \"System.UInt64\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 318,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"e80c1a1c-99d9-418c-9f66-097c048095bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong?\",\r\n \"fullCSharpName\": \"System.UInt64?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 319,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"48cbabb8-03fc-4f00-bad6-0641a7f562c7\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n },\r\n {\r\n \"aceType\": \"User\",\r\n \"principalId\": \"61cc3a50-2795-4c7c-a788-a81ea36c7acc\",\r\n \"permission\": \"Use\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2778,13 +3502,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:34 GMT"
+ "Fri, 22 Dec 2017 22:35:12 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "547dd438-1a0a-4aea-a60f-7d636ddb4769"
+ "79803f5f-4333-4231-8c5e-62b8a2ce3a04"
],
"OData-Version": [
"4.0"
@@ -2799,23 +3523,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/catalog/usql/databases/testdb11013/schemas/dbo/types?$filter=isComplexType%20eq%20false&api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEwMTMvc2NoZW1hcy9kYm8vdHlwZXM/JGZpbHRlcj1pc0NvbXBsZXhUeXBlJTIwZXElMjBmYWxzZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestUri": "/catalog/usql/acl?api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20dae214-5bb8-4c29-b7d3-684bd2aff9f4"
+ "e999428b-f214-484e-a656-31a2a76fc589"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
]
},
- "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba23508.azuredatalakeanalytics.net/sqlip/$metadata#types\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBinary\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"systemTypeId\": 173,\r\n \"userTypeId\": 173,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b05e4357-12c7-461f-9559-4c39cfae1338\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBit\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"systemTypeId\": 104,\r\n \"userTypeId\": 104,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"caeb6f59-f027-4348-a3ff-f064531e0ee8\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlByte\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"systemTypeId\": 48,\r\n \"userTypeId\": 48,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f2583736-1f0e-4072-8a04-d83db5e08241\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDate\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"systemTypeId\": 42,\r\n \"userTypeId\": 42,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29f9721a-315b-498f-a304-762e0511226d\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDecimal\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"systemTypeId\": 106,\r\n \"userTypeId\": 106,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"d6d8f781-23bf-48a6-a462-8946bab23c36\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDouble\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"systemTypeId\": 62,\r\n \"userTypeId\": 62,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db1bc9a7-f5da-4d64-9baa-399c9f72d6e2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlGuid\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"systemTypeId\": 36,\r\n \"userTypeId\": 36,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ab6715ed-cfba-4b5a-92e9-f86520b8e711\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt16\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"systemTypeId\": 52,\r\n \"userTypeId\": 52,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4ee64682-cbd4-40cc-90e9-c5de1433bbed\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt32\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"systemTypeId\": 56,\r\n \"userTypeId\": 56,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"9af787e7-9fc0-4819-80ac-0339ce031ab3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt64\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"systemTypeId\": 127,\r\n \"userTypeId\": 127,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"44d67b27-8bd8-4072-81ca-2d32adfdb17c\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlMoney\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"systemTypeId\": 60,\r\n \"userTypeId\": 60,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"861e13ee-e110-4dd2-b0df-f2eb9a6b5bd2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlSingle\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"systemTypeId\": 59,\r\n \"userTypeId\": 59,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7037d7f1-e3d4-416f-bf81-285b630a75e4\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlString\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"systemTypeId\": 231,\r\n \"userTypeId\": 231,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a15306f5-43f5-433b-b795-ce02ee911953\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool\",\r\n \"fullCSharpName\": \"System.Boolean\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 300,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c04b91b8-2b7e-45b3-ada9-db5ede901672\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool?\",\r\n \"fullCSharpName\": \"System.Boolean?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 301,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"42f3147a-ed9b-47ae-a8ad-aa2fbc51e0ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte\",\r\n \"fullCSharpName\": \"System.Byte\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 302,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"6a048add-f003-4d73-8471-3b0be963d1ac\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte?\",\r\n \"fullCSharpName\": \"System.Byte?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 303,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c2623267-2a86-444a-a773-89783eae5b30\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte[]\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte[]\",\r\n \"fullCSharpName\": \"System.Byte[]\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 328,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"84506afa-d9ad-4bef-9e44-cd00f1f54ce3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char\",\r\n \"fullCSharpName\": \"System.Char\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 310,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"bb4bb082-4d9c-4ce4-aa1b-bfaea278ac92\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char?\",\r\n \"fullCSharpName\": \"System.Char?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 311,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"748c6bfa-5a8e-43d4-823b-3b3be0d8b85a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime\",\r\n \"fullCSharpName\": \"System.DateTime\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 326,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4e348b46-7218-4c30-b879-ceee5a59e7bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime?\",\r\n \"fullCSharpName\": \"System.DateTime?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 327,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"eb486159-acfa-4499-9b1a-e0ecda5d52a2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal\",\r\n \"fullCSharpName\": \"System.Decimal\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 324,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f29ebb5f-17e8-4448-8aec-1a6702380e75\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal?\",\r\n \"fullCSharpName\": \"System.Decimal?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 325,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b78657ef-955b-4841-805e-bec1e9d11e37\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double\",\r\n \"fullCSharpName\": \"System.Double\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 322,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f3bbcc4e-d872-4bd1-8429-7082199016d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double?\",\r\n \"fullCSharpName\": \"System.Double?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 323,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"5832365f-70cb-47f9-92db-46cf7903dffc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid\",\r\n \"fullCSharpName\": \"System.Guid\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 330,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ccccbe73-770a-4bc8-905f-2eec41e79736\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid?\",\r\n \"fullCSharpName\": \"System.Guid?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 331,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db4c6514-17fa-4de1-ab25-a22817844593\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short\",\r\n \"fullCSharpName\": \"System.Int16\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 306,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2cca4ae1-4272-4ca4-832e-5bc22c486299\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short?\",\r\n \"fullCSharpName\": \"System.Int16?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 307,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"cef0bb72-9079-471b-855c-cfb87b1dc11f\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int\",\r\n \"fullCSharpName\": \"System.Int32\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 312,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2a3f9560-1645-4e60-8ca5-9713f2ef8363\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int?\",\r\n \"fullCSharpName\": \"System.Int32?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 313,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29fedecb-21d0-4fa8-bf6b-2539bee71bcc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long\",\r\n \"fullCSharpName\": \"System.Int64\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 316,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"14c67089-ce4d-4770-8425-a0c41788c3cd\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long?\",\r\n \"fullCSharpName\": \"System.Int64?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 317,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"01b8cce9-d5e9-4f38-9f29-d5f3927d7407\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte\",\r\n \"fullCSharpName\": \"System.SByte\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 304,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"899a07dd-662c-4cd2-8f98-6ec34d739355\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte?\",\r\n \"fullCSharpName\": \"System.SByte?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 305,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f76f7f1a-64d9-4c50-a38c-a6b2578f66d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float\",\r\n \"fullCSharpName\": \"System.Single\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 320,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"04ae7374-f270-48ba-b429-c7e07bfcde61\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float?\",\r\n \"fullCSharpName\": \"System.Single?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 321,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f8f90902-84a6-449f-96fe-6710accc0f7a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.String\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"string\",\r\n \"fullCSharpName\": \"System.String\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 329,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"313664ea-0a0b-4016-8c25-a11052d885ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort\",\r\n \"fullCSharpName\": \"System.UInt16\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 308,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"1ee295be-df81-4f21-a17c-31205884958b\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort?\",\r\n \"fullCSharpName\": \"System.UInt16?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 309,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a3228a28-dc3d-42f1-81d7-86899822af91\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint\",\r\n \"fullCSharpName\": \"System.UInt32\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 314,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"133275dc-ec4b-4662-86ee-f6d13b0e8b7e\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint?\",\r\n \"fullCSharpName\": \"System.UInt32?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 315,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7292a0b6-ff2d-4c02-b256-63993c2b270a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong\",\r\n \"fullCSharpName\": \"System.UInt64\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 318,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"e80c1a1c-99d9-418c-9f66-097c048095bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba23508\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong?\",\r\n \"fullCSharpName\": \"System.UInt64?\",\r\n \"systemTypeId\": 243,\r\n \"userTypeId\": 319,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"48cbabb8-03fc-4f00-bad6-0641a7f562c7\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba2894.azuredatalakeanalytics.net/sqlip/$metadata#acl\",\r\n \"value\": [\r\n {\r\n \"aceType\": \"UserObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"GroupObj\",\r\n \"principalId\": \"e994d55d-2464-4c73-b5e1-40e3c9894434\",\r\n \"permission\": \"All\"\r\n },\r\n {\r\n \"aceType\": \"Other\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"permission\": \"None\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata.metadata=minimal; odata.streaming=true"
@@ -2827,13 +3551,13 @@
"no-store, no-cache, max-age=0, private"
],
"Date": [
- "Wed, 14 Jun 2017 23:41:35 GMT"
+ "Fri, 22 Dec 2017 22:35:13 GMT"
],
"Transfer-Encoding": [
"chunked"
],
"x-ms-request-id": [
- "5e94efe4-f4c2-4b97-8563-dc13185b7feb"
+ "96281c2f-d885-4685-8e08-12c1dd5509b7"
],
"OData-Version": [
"4.0"
@@ -2846,34 +3570,233 @@
]
},
"StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/testdb16283/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvYWNsP29wPUdSQU5UQUNFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"User\",\r\n \"principalId\": \"61cc3a50-2795-4c7c-a788-a81ea36c7acc\",\r\n \"permission\": \"Use\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "x-ms-client-request-id": [
+ "7c4d00c2-f73b-4a6c-9d85-8bde7ef33b18"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:35:10 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "5868a1ff-399f-48f0-85d5-9034c1cb5d60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/databases/testdb16283/acl?op=REVOKEACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTYyODMvYWNsP29wPVJFVk9LRUFDRSZhcGktdmVyc2lvbj0yMDE2LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"User\",\r\n \"principalId\": \"61cc3a50-2795-4c7c-a788-a81ea36c7acc\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "83"
+ ],
+ "x-ms-client-request-id": [
+ "b7db8274-2ffe-4b58-b459-2cbbadc56310"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:35:11 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "d265fb2a-4f63-404c-a898-87b619e2274e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?op=GRANTACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9R1JBTlRBQ0UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"User\",\r\n \"principalId\": \"61cc3a50-2795-4c7c-a788-a81ea36c7acc\",\r\n \"permission\": \"Use\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "x-ms-client-request-id": [
+ "be38ca5c-43ba-4e39-a583-1281a2b3fa59"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:35:12 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "793bfa2a-d7ff-4b7b-9bd6-5f2af195441f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/catalog/usql/acl?op=REVOKEACE&api-version=2016-11-01",
+ "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9hY2w/b3A9UkVWT0tFQUNFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"aceType\": \"User\",\r\n \"principalId\": \"61cc3a50-2795-4c7c-a788-a81ea36c7acc\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "83"
+ ],
+ "x-ms-client-request-id": [
+ "4e522144-e6d8-4d39-b060-95f4bd338d8d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 22:35:13 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-request-id": [
+ "27d31127-590c-42e6-b438-6e0371e03312"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
}
],
"Names": {
".ctor": [
- "rgaba12387",
- "testaba18134",
- "testaba23508",
- "teststorage17405",
- "testdatalake17622",
- "testdatalake23017",
- "testazureblob19316",
- "testdb11013",
- "testtbl1321",
- "testtvf11539",
- "testproc15909",
- "testview17897",
- "testcred12860",
- "testsecret18661",
- "testsecretpwd18454"
+ "rgaba17557",
+ "testaba17375",
+ "testaba2894",
+ "teststorage13396",
+ "testdatalake15484",
+ "testdatalake24981",
+ "testazureblob18247",
+ "testdb16283",
+ "testtbl1939",
+ "testtvf1366",
+ "testproc11892",
+ "testview14640",
+ "testcred19974",
+ "testsecret1328",
+ "testsecretpwd1420"
],
"CreateCatalog": [
- "0c9313ec-57bd-42d7-b763-2ed4f026487b"
+ "f1a588fe-26f9-4d83-9f5f-8ea6c5bfa823"
],
"RunJobToCompletion": [
- "testjob18511"
+ "testjob12891"
+ ],
+ "GetCatalogItemsTest": [
+ "61cc3a50-2795-4c7c-a788-a81ea36c7acc"
]
},
"Variables": {
- "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f"
+ "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db"
}
}
\ No newline at end of file
diff --git a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretAndCredentialCRUDTest.json b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretAndCredentialCRUDTest.json
deleted file mode 100644
index ce582eddda66..000000000000
--- a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretAndCredentialCRUDTest.json
+++ /dev/null
@@ -1,1736 +0,0 @@
-{
- "Entries": [
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/register?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "36fbde0d-ce4a-46d0-893b-019543936b34"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview"
- ]
- },
- "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 \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:04 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
- ],
- "x-ms-request-id": [
- "4d7cc824-e237-49be-a17c-2531777e381d"
- ],
- "x-ms-correlation-request-id": [
- "4d7cc824-e237-49be-a17c-2531777e381d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192404Z:4d7cc824-e237-49be-a17c-2531777e381d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8a5eb68c-ed85-4eba-818e-26e1d9736eda"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview"
- ]
- },
- "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 \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:04 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
- ],
- "x-ms-request-id": [
- "914c8414-bda0-4f74-b804-300db8c52441"
- ],
- "x-ms-correlation-request-id": [
- "914c8414-bda0-4f74-b804-300db8c52441"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192404Z:914c8414-bda0-4f74-b804-300db8c52441"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "df85651d-bf92-4ceb-87d1-2fbde0bc7f1e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:05 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
- ],
- "x-ms-request-id": [
- "0d1b1dc0-955c-4ed1-963b-8d11bdad9ea4"
- ],
- "x-ms-correlation-request-id": [
- "0d1b1dc0-955c-4ed1-963b-8d11bdad9ea4"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192405Z:0d1b1dc0-955c-4ed1-963b-8d11bdad9ea4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b427e5a7-76db-43b2-af85-2da2426e55ff"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:05 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
- ],
- "x-ms-request-id": [
- "a773929d-c504-49d7-bbd1-255e0d9c7751"
- ],
- "x-ms-correlation-request-id": [
- "a773929d-c504-49d7-bbd1-255e0d9c7751"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192405Z:a773929d-c504-49d7-bbd1-255e0d9c7751"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e7c61db9-0abe-4725-8917-603d44a5cd19"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:06 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
- ],
- "x-ms-request-id": [
- "d3d8afac-386b-44ee-9527-85a3f9642e04"
- ],
- "x-ms-correlation-request-id": [
- "d3d8afac-386b-44ee-9527-85a3f9642e04"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192406Z:d3d8afac-386b-44ee-9527-85a3f9642e04"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "397b9c82-d946-41eb-b490-b5d1463df2b0"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:06 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
- ],
- "x-ms-request-id": [
- "840b7eb4-901a-46b0-874d-66d7a934a9f7"
- ],
- "x-ms-correlation-request-id": [
- "840b7eb4-901a-46b0-874d-66d7a934a9f7"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192406Z:840b7eb4-901a-46b0-874d-66d7a934a9f7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTUxNDg/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ead8d9a1-195e-4ce0-a7b5-74296415af8a"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba15148' could not be found.\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "102"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:06 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-failure-cause": [
- "gateway"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
- ],
- "x-ms-request-id": [
- "2bb536fb-18bb-4a7d-a2a2-28e0849e0798"
- ],
- "x-ms-correlation-request-id": [
- "2bb536fb-18bb-4a7d-a2a2-28e0849e0798"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192406Z:2bb536fb-18bb-4a7d-a2a2-28e0849e0798"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTUxNDg/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "42a2d228-b83e-4abe-b851-18e74dd2da70"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148\",\r\n \"name\": \"rgaba15148\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:07 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
- ],
- "x-ms-request-id": [
- "39c982a2-f6e1-47ba-b076-b544ad49e7e8"
- ],
- "x-ms-correlation-request-id": [
- "39c982a2-f6e1-47ba-b076-b544ad49e7e8"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192407Z:39c982a2-f6e1-47ba-b076-b544ad49e7e8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148?api-version=2016-02-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTUxNDg/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
- "x-ms-client-request-id": [
- "b06a0492-0852-4b0f-853f-91eb4a7b4968"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148\",\r\n \"name\": \"rgaba15148\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "174"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:07 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
- ],
- "x-ms-request-id": [
- "cf516fb3-1274-4739-86ea-692ae21f4488"
- ],
- "x-ms-correlation-request-id": [
- "cf516fb3-1274-4739-86ea-692ae21f4488"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192407Z:cf516fb3-1274-4739-86ea-692ae21f4488"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ffcc1107-4f6b-4db9-84a9-d6e8ba880ad7"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake14460' under resource group 'rgaba15148' was not found.\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "164"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:07 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-failure-cause": [
- "gateway"
- ],
- "x-ms-request-id": [
- "f952a614-aa22-4d25-a2b6-60bd0a86320e"
- ],
- "x-ms-correlation-request-id": [
- "f952a614-aa22-4d25-a2b6-60bd0a86320e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192407Z:f952a614-aa22-4d25-a2b6-60bd0a86320e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake14460.azuredatalakestore.net\",\r\n \"accountId\": \"da29a822-40e7-492b-8af4-6e3a35a1ba40\",\r\n \"creationTime\": \"2017-03-27T19:24:10.0245532Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:24:10.0245532Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460\",\r\n \"name\": \"testdatalake14460\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:40 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "895b77af-f69c-4d5e-bda3-928d25d16cf9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
- ],
- "x-ms-correlation-request-id": [
- "094a9592-0939-46b9-bcac-84c5f63248d4"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192440Z:094a9592-0939-46b9-bcac-84c5f63248d4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "501023a1-62e9-428d-b4eb-8af750eb8fbd"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake14460.azuredatalakestore.net\",\r\n \"accountId\": \"da29a822-40e7-492b-8af4-6e3a35a1ba40\",\r\n \"creationTime\": \"2017-03-27T19:24:10.0245532Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:24:10.0245532Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460\",\r\n \"name\": \"testdatalake14460\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:40 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "164bf6ff-c278-41ae-865f-8fc4de6aaefa"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14977"
- ],
- "x-ms-correlation-request-id": [
- "b3ce9436-bd7e-4be3-a774-3d5a13af5db1"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192441Z:b3ce9436-bd7e-4be3-a774-3d5a13af5db1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e0e5b77d-ee8e-4a28-bf80-9a000a95e7e8"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake14460.azuredatalakestore.net\",\r\n \"accountId\": \"da29a822-40e7-492b-8af4-6e3a35a1ba40\",\r\n \"creationTime\": \"2017-03-27T19:24:10.0245532Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:24:10.0245532Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460\",\r\n \"name\": \"testdatalake14460\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:25:15 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "ef492456-19dc-4b36-b0fb-24eb15d784dc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "6b7b4cc5-f40b-49b0-8c03-02cad7dd2015"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192515Z:6b7b4cc5-f40b-49b0-8c03-02cad7dd2015"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
- "x-ms-client-request-id": [
- "132da82b-1fa1-4860-9f62-f2b6f79d2aaa"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"da29a822-40e7-492b-8af4-6e3a35a1ba40\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460\",\r\n \"name\": \"testdatalake14460\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "421"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:08 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460/operationresults/0?api-version=2016-11-01"
- ],
- "Retry-After": [
- "10"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/da29a822-40e7-492b-8af4-6e3a35a1ba400?api-version=2016-11-01&expanded=true"
- ],
- "x-ms-request-id": [
- "98c677e9-7909-428c-864c-c6b22bdeefd3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
- ],
- "x-ms-correlation-request-id": [
- "0d0325b6-6319-4d94-9ef0-cc30a7a4eb35"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192409Z:0d0325b6-6319-4d94-9ef0-cc30a7a4eb35"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/da29a822-40e7-492b-8af4-6e3a35a1ba400?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2RhMjlhODIyLTQwZTctNDkyYi04YWY0LTZlM2EzNWExYmE0MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:39 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "c9fbde51-5bf6-4577-85af-8e2c4b944e93"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-correlation-request-id": [
- "aca3bb6e-203f-4908-9124-518e4e307968"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192440Z:aca3bb6e-203f-4908-9124-518e4e307968"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "35cb1289-2c79-47a1-a248-d642c5d4abb0"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake215' under resource group 'rgaba15148' was not found.\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "162"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:41 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-failure-cause": [
- "gateway"
- ],
- "x-ms-request-id": [
- "5ca0f377-b842-44dd-bcbf-c30869f33bda"
- ],
- "x-ms-correlation-request-id": [
- "5ca0f377-b842-44dd-bcbf-c30869f33bda"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192441Z:5ca0f377-b842-44dd-bcbf-c30869f33bda"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake215.azuredatalakestore.net\",\r\n \"accountId\": \"01e78156-ca82-4c0a-ac52-ffa718162f4f\",\r\n \"creationTime\": \"2017-03-27T19:24:43.1137438Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:24:43.1137438Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215\",\r\n \"name\": \"testdatalake215\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:25:14 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "1d4864d7-7d93-4af0-b044-06a3994b34cc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
- ],
- "x-ms-correlation-request-id": [
- "6964aa22-f129-4102-bbd0-ac1b1b2f08eb"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192514Z:6964aa22-f129-4102-bbd0-ac1b1b2f08eb"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0fe7806f-0ed8-42d8-b091-f59b7dfaff10"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake215.azuredatalakestore.net\",\r\n \"accountId\": \"01e78156-ca82-4c0a-ac52-ffa718162f4f\",\r\n \"creationTime\": \"2017-03-27T19:24:43.1137438Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:24:43.1137438Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215\",\r\n \"name\": \"testdatalake215\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:25:14 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "49cf646b-1ac6-489f-bb19-f226782f14b0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "6bab513b-edea-4b84-9445-f56b44b325be"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192515Z:6bab513b-edea-4b84-9445-f56b44b325be"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
- "x-ms-client-request-id": [
- "57abb421-bb73-4a33-bf4a-b91fa1077bae"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"01e78156-ca82-4c0a-ac52-ffa718162f4f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215\",\r\n \"name\": \"testdatalake215\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "417"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:24:42 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215/operationresults/0?api-version=2016-11-01"
- ],
- "Retry-After": [
- "10"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/01e78156-ca82-4c0a-ac52-ffa718162f4f0?api-version=2016-11-01&expanded=true"
- ],
- "x-ms-request-id": [
- "819fae1d-e720-4b9c-84c4-93d5db56eec6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1189"
- ],
- "x-ms-correlation-request-id": [
- "43b0ddf1-c1d4-4e77-af1d-9e029710a9d7"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192443Z:43b0ddf1-c1d4-4e77-af1d-9e029710a9d7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/01e78156-ca82-4c0a-ac52-ffa718162f4f0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzAxZTc4MTU2LWNhODItNGMwYS1hYzUyLWZmYTcxODE2MmY0ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:25:13 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "27128e17-035b-4a84-b557-ad358cbaa533"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "06ba2866-a3a6-4430-ac19-bdbf1c339ea1"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170327T192513Z:06ba2866-a3a6-4430-ac19-bdbf1c339ea1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQzMDM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14460\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14460\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "290"
- ],
- "x-ms-client-request-id": [
- "46cdf1f9-db2b-4962-93d3-b48f150e1b95"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14460\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14460\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f2543aff-5522-4f78-9784-94bf99b24175\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303\",\r\n \"name\": \"testaba24303\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "573"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:25:17 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303/operationresults/0?api-version=2016-11-01"
- ],
- "Retry-After": [
- "10"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/f2543aff-5522-4f78-9784-94bf99b241750?api-version=2016-11-01&expanded=true"
- ],
- "x-ms-request-id": [
- "d5652489-e9fd-4eac-9486-1a61cbaa706c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-correlation-request-id": [
- "db609642-e890-4dce-8e70-fdb2afa398c5"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20170327T192517Z:db609642-e890-4dce-8e70-fdb2afa398c5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/f2543aff-5522-4f78-9784-94bf99b241750?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9mMjU0M2FmZi01NTIyLTRmNzgtOTc4NC05NGJmOTliMjQxNzUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:25:48 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "88a3b3f9-5f67-4908-8fc3-c8e0fc069ad9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
- ],
- "x-ms-correlation-request-id": [
- "a2e80d44-a951-4e58-a07f-92c473ffdaba"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20170327T192548Z:a2e80d44-a951-4e58-a07f-92c473ffdaba"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQzMDM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14460\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14460\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba24303.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f2543aff-5522-4f78-9784-94bf99b24175\",\r\n \"creationTime\": \"2017-03-27T19:25:19.1642971Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:25:19.1642971Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303\",\r\n \"name\": \"testaba24303\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:25:48 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "5a746b82-aca7-400e-8e24-b09496455f1b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
- ],
- "x-ms-correlation-request-id": [
- "ce4cc79e-c9bc-4d49-8959-e012178ea23a"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20170327T192548Z:ce4cc79e-c9bc-4d49-8959-e012178ea23a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQzMDM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8ba2a14d-4542-4661-8902-ba2935f7f40c"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14460\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14460\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba24303.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f2543aff-5522-4f78-9784-94bf99b24175\",\r\n \"creationTime\": \"2017-03-27T19:25:19.1642971Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:25:19.1642971Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303\",\r\n \"name\": \"testaba24303\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:25:49 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "73af71d0-0b69-4da8-8fa9-32dd5652fc12"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
- ],
- "x-ms-correlation-request-id": [
- "7d6bf6eb-b9ef-41f2-9f52-1439d0181a3c"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20170327T192549Z:7d6bf6eb-b9ef-41f2-9f52-1439d0181a3c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/917f8f2f-52cb-4c48-b2c5-bf51b13ed580?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvOTE3ZjhmMmYtNTJjYi00YzQ4LWIyYzUtYmY1MWIxM2VkNTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"name\": \"testjob16405\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb16550; CREATE DATABASE testdb16550; \\r\\n//Create Table\\r\\nCREATE TABLE testdb16550.dbo.testtbl17111\\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 BUCKETS (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb16550.dbo.testtbl17111 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb16550.dbo.testtvf14031;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb16550.dbo.testtvf14031()\\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 testdb16550.dbo.testview11785 \\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 testdb16550.dbo.testproc12120()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb16550.dbo.testview11785 \\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}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "2539"
- ],
- "x-ms-client-request-id": [
- "28dbf331-8cde-4872-962e-5cbb67faaaba"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"917f8f2f-52cb-4c48-b2c5-bf51b13ed580\",\r\n \"name\": \"testjob16405\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:27:51 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "a6815787-e67b-4f0b-8b7d-b08642e0cb72"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/917f8f2f-52cb-4c48-b2c5-bf51b13ed580?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvOTE3ZjhmMmYtNTJjYi00YzQ4LWIyYzUtYmY1MWIxM2VkNTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8a8987f2-3dfa-4648-bf47-d9b3c7aed6bf"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"917f8f2f-52cb-4c48-b2c5-bf51b13ed580\",\r\n \"name\": \"testjob16405\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.5391402-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16550; CREATE DATABASE testdb16550; \\n//Create Table\\nCREATE TABLE testdb16550.dbo.testtbl17111\\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 BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16550.dbo.testtbl17111 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16550.dbo.testtvf14031;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16550.dbo.testtvf14031()\\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 testdb16550.dbo.testview11785 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16550.dbo.testproc12120()\\nAS BEGIN\\n CREATE VIEW testdb16550.dbo.testview11785 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.2429148S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:27:51 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "bb4f5cb3-6ac5-45e1-8be6-2abd130a0976"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/917f8f2f-52cb-4c48-b2c5-bf51b13ed580?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvOTE3ZjhmMmYtNTJjYi00YzQ4LWIyYzUtYmY1MWIxM2VkNTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "df9c23b3-4fa1-4958-bc76-3027c9d033b8"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"917f8f2f-52cb-4c48-b2c5-bf51b13ed580\",\r\n \"name\": \"testjob16405\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.5391402-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16550; CREATE DATABASE testdb16550; \\n//Create Table\\nCREATE TABLE testdb16550.dbo.testtbl17111\\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 BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16550.dbo.testtbl17111 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16550.dbo.testtvf14031;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16550.dbo.testtvf14031()\\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 testdb16550.dbo.testview11785 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16550.dbo.testproc12120()\\nAS BEGIN\\n CREATE VIEW testdb16550.dbo.testview11785 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.6179917S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:27:56 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "0a515089-c18a-4427-987e-1cf5a3da6980"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/917f8f2f-52cb-4c48-b2c5-bf51b13ed580?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvOTE3ZjhmMmYtNTJjYi00YzQ4LWIyYzUtYmY1MWIxM2VkNTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "652b2102-f487-44da-a1dd-f3b45701a723"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"917f8f2f-52cb-4c48-b2c5-bf51b13ed580\",\r\n \"name\": \"testjob16405\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"endTime\": \"2017-03-27T12:28:00.0705921-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Failed\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"E_CSC_USER_DEPRECATEDBUCKETS\",\r\n \"severity\": \"Error\",\r\n \"component\": \"CSC\",\r\n \"source\": \"USER\",\r\n \"message\": \"Use of the keyword 'BUCKETS' in this syntax has been deprecated and is no longer supported.\",\r\n \"details\": \"at token 'BUCKETS', line 16\\r\\nnear the ###:\\r\\n**************\\r\\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY ### BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16550.dbo.testtbl17111 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS t\",\r\n \"description\": \"'BUCKETS' is removed from the partitioning clause syntax.\",\r\n \"resolution\": \"Remove the keyword 'BUCKETS' from the partitioning clause. This will not affect its meaning.\",\r\n \"helpLink\": \"\",\r\n \"filePath\": \"\",\r\n \"lineNumber\": 16,\r\n \"startOffset\": 486,\r\n \"endOffset\": 493\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.5391402-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-03-27T12:28:00.0705921-07:00\",\r\n \"details\": \"result:CompilationFailed\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16550; CREATE DATABASE testdb16550; \\n//Create Table\\nCREATE TABLE testdb16550.dbo.testtbl17111\\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 BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16550.dbo.testtbl17111 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16550.dbo.testtvf14031;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16550.dbo.testtvf14031()\\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 testdb16550.dbo.testview11785 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16550.dbo.testproc12120()\\nAS BEGIN\\n CREATE VIEW testdb16550.dbo.testview11785 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT8.5314519S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Mon, 27 Mar 2017 19:28:01 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5350c033-1915-4ae8-ac5d-36506a99a2b4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- }
- ],
- "Names": {
- ".ctor": [
- "rgaba15148",
- "testaba16750",
- "testaba24303",
- "teststorage15292",
- "testdatalake14460",
- "testdatalake215",
- "testazureblob14049",
- "testdb16550",
- "testtbl17111",
- "testtvf14031",
- "testproc12120",
- "testview11785",
- "testcred18003",
- "testsecret12851",
- "testsecretpwd15911"
- ],
- "CreateCatalog": [
- "917f8f2f-52cb-4c48-b2c5-bf51b13ed580"
- ],
- "RunJobToCompletion": [
- "testjob16405"
- ]
- },
- "Variables": {
- "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f"
- }
-}
\ No newline at end of file
diff --git a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretCRUDTest.json b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretCRUDTest.json
deleted file mode 100644
index 92aef6ce249d..000000000000
--- a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretCRUDTest.json
+++ /dev/null
@@ -1,2322 +0,0 @@
-{
- "Entries": [
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "44a7bfbb-29b2-4a02-ba51-6be55c349e5f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "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 \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:19:23 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-request-id": [
- "63d3816a-f962-4701-ab76-3149949ff675"
- ],
- "x-ms-correlation-request-id": [
- "63d3816a-f962-4701-ab76-3149949ff675"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170609T201924Z:63d3816a-f962-4701-ab76-3149949ff675"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "fa1caebc-dcad-4235-95a9-09b3863c8af0"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "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 \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:19:23 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-request-id": [
- "3144ce32-d5a8-42bc-8e29-60b5bc93004e"
- ],
- "x-ms-correlation-request-id": [
- "3144ce32-d5a8-42bc-8e29-60b5bc93004e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170609T201924Z:3144ce32-d5a8-42bc-8e29-60b5bc93004e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "11e94360-45c7-41af-a999-5f0b33a6537c"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:19:24 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
- ],
- "x-ms-request-id": [
- "bdd92763-4051-42f6-bfa9-9bdd2537bfa9"
- ],
- "x-ms-correlation-request-id": [
- "bdd92763-4051-42f6-bfa9-9bdd2537bfa9"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170609T201925Z:bdd92763-4051-42f6-bfa9-9bdd2537bfa9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4e6be13a-e1fe-4a30-8d02-4fab24f22e0f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:19:24 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-request-id": [
- "67cacc15-c53f-49a8-833f-59188241d523"
- ],
- "x-ms-correlation-request-id": [
- "67cacc15-c53f-49a8-833f-59188241d523"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170609T201925Z:67cacc15-c53f-49a8-833f-59188241d523"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "91dff157-4636-4bbe-925a-c42dfa34a8c3"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:19:26 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
- ],
- "x-ms-request-id": [
- "1a356cec-9c10-4ea3-9bcf-1aaee76a0bf4"
- ],
- "x-ms-correlation-request-id": [
- "1a356cec-9c10-4ea3-9bcf-1aaee76a0bf4"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170609T201926Z:1a356cec-9c10-4ea3-9bcf-1aaee76a0bf4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8791279a-932c-4ca1-a016-3391f214ce64"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:19:26 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-request-id": [
- "d6fd8295-1efe-4643-9888-a3c32470c0c9"
- ],
- "x-ms-correlation-request-id": [
- "d6fd8295-1efe-4643-9888-a3c32470c0c9"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170609T201926Z:d6fd8295-1efe-4643-9888-a3c32470c0c9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1770?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTc3MD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1b64422c-3617-42c1-8fa1-5dd7f4f3f6c5"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba1770' could not be found.\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "101"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:19:26 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-failure-cause": [
- "gateway"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
- ],
- "x-ms-request-id": [
- "c20a13dd-f60e-4846-8f81-34b39de57a49"
- ],
- "x-ms-correlation-request-id": [
- "c20a13dd-f60e-4846-8f81-34b39de57a49"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170609T201926Z:c20a13dd-f60e-4846-8f81-34b39de57a49"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1770?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTc3MD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e7d369f9-191c-42f0-81e5-2e090ee76a3b"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770\",\r\n \"name\": \"rgaba1770\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:19:27 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
- ],
- "x-ms-request-id": [
- "e1d54305-0575-4caa-ac97-a723106def75"
- ],
- "x-ms-correlation-request-id": [
- "e1d54305-0575-4caa-ac97-a723106def75"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170609T201928Z:e1d54305-0575-4caa-ac97-a723106def75"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1770?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTc3MD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
- "x-ms-client-request-id": [
- "c2a64ea7-3c96-4d2b-b717-72dd0076f1b9"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770\",\r\n \"name\": \"rgaba1770\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "172"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:19:27 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
- ],
- "x-ms-request-id": [
- "2f613b42-5e8c-416c-8f25-2942631b4f6b"
- ],
- "x-ms-correlation-request-id": [
- "2f613b42-5e8c-416c-8f25-2942631b4f6b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170609T201928Z:2f613b42-5e8c-416c-8f25-2942631b4f6b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake13536?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTM1MzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "71a6d651-e125-4d31-900e-beb941a31e94"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake13536' under resource group 'rgaba1770' was not found.\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "163"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:19:27 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-failure-cause": [
- "gateway"
- ],
- "x-ms-request-id": [
- "e979dc84-eabe-488b-87f2-89379d56f368"
- ],
- "x-ms-correlation-request-id": [
- "e979dc84-eabe-488b-87f2-89379d56f368"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20170609T201928Z:e979dc84-eabe-488b-87f2-89379d56f368"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake13536?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTM1MzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13536.azuredatalakestore.net\",\r\n \"accountId\": \"e08794d8-16af-4b96-a462-1a9dd99b439e\",\r\n \"creationTime\": \"2017-06-09T20:19:29.9869541Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:19:29.9869541Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake13536\",\r\n \"name\": \"testdatalake13536\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:20:00 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "0abaf222-9894-4777-bb76-6707179bf231"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
- ],
- "x-ms-correlation-request-id": [
- "38a1ac1a-ab6e-4c50-bd61-37c810a39937"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20170609T202001Z:38a1ac1a-ab6e-4c50-bd61-37c810a39937"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake13536?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTM1MzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "eb3ca631-9b95-4f9f-a42a-8998c4caecd5"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13536.azuredatalakestore.net\",\r\n \"accountId\": \"e08794d8-16af-4b96-a462-1a9dd99b439e\",\r\n \"creationTime\": \"2017-06-09T20:19:29.9869541Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:19:29.9869541Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake13536\",\r\n \"name\": \"testdatalake13536\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:20:01 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "409e3ade-20b8-424b-9682-0ed912f025ed"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "09799af1-bb3c-4af9-aa95-2ef7352b613d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20170609T202001Z:09799af1-bb3c-4af9-aa95-2ef7352b613d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake13536?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTM1MzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2ee8b1e3-414f-421f-b1a7-5c43600de238"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13536.azuredatalakestore.net\",\r\n \"accountId\": \"e08794d8-16af-4b96-a462-1a9dd99b439e\",\r\n \"creationTime\": \"2017-06-09T20:19:29.9869541Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:19:29.9869541Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake13536\",\r\n \"name\": \"testdatalake13536\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:20:35 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "f82ce4c4-f319-4067-bb3a-31e7c0c013b6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
- ],
- "x-ms-correlation-request-id": [
- "9cfa2b29-4cd2-43f8-a486-5652761c5410"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20170609T202036Z:9cfa2b29-4cd2-43f8-a486-5652761c5410"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake13536?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTM1MzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
- "x-ms-client-request-id": [
- "02b09e9f-6558-469a-b19b-197061317494"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"e08794d8-16af-4b96-a462-1a9dd99b439e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake13536\",\r\n \"name\": \"testdatalake13536\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "420"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:19:29 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake13536/operationresults/0?api-version=2016-11-01"
- ],
- "Retry-After": [
- "10"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e08794d8-16af-4b96-a462-1a9dd99b439e0?api-version=2016-11-01&expanded=true"
- ],
- "x-ms-request-id": [
- "239a5993-8999-4ac5-a6cc-b991dd3e648d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-correlation-request-id": [
- "ac4be134-9707-4487-a132-42f65c053163"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20170609T201930Z:ac4be134-9707-4487-a132-42f65c053163"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e08794d8-16af-4b96-a462-1a9dd99b439e0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2UwODc5NGQ4LTE2YWYtNGI5Ni1hNDYyLTFhOWRkOTliNDM5ZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:20:00 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "dfd27790-f35b-4a44-9589-59603933408c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
- ],
- "x-ms-correlation-request-id": [
- "2b1e19a7-4344-4501-96bb-632b032acf6f"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20170609T202000Z:2b1e19a7-4344-4501-96bb-632b032acf6f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake23342?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjMzNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7587a22c-1fc5-48bf-8349-541faf85928d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake23342' under resource group 'rgaba1770' was not found.\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "163"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:20:01 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-failure-cause": [
- "gateway"
- ],
- "x-ms-request-id": [
- "6529cc00-39d9-4608-b7ba-e07b64df2ca6"
- ],
- "x-ms-correlation-request-id": [
- "6529cc00-39d9-4608-b7ba-e07b64df2ca6"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20170609T202002Z:6529cc00-39d9-4608-b7ba-e07b64df2ca6"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake23342?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjMzNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake23342.azuredatalakestore.net\",\r\n \"accountId\": \"3c1e2cfa-69c0-4248-8239-53b1060e056f\",\r\n \"creationTime\": \"2017-06-09T20:20:04.0211262Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:20:04.0211262Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake23342\",\r\n \"name\": \"testdatalake23342\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:20:34 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "8ada3f2c-4c53-49c2-afdb-069806c0c3cf"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "dbb00f89-4a51-42d4-8fdb-5aab76ae2751"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20170609T202035Z:dbb00f89-4a51-42d4-8fdb-5aab76ae2751"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake23342?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjMzNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0e02f3a6-69f7-44bf-8ed1-54c00f6f8765"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake23342.azuredatalakestore.net\",\r\n \"accountId\": \"3c1e2cfa-69c0-4248-8239-53b1060e056f\",\r\n \"creationTime\": \"2017-06-09T20:20:04.0211262Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:20:04.0211262Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake23342\",\r\n \"name\": \"testdatalake23342\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:20:35 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "20caf394-0ef7-4467-bb90-5b205b9b0598"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "229f636d-b33c-418f-a40b-b3e0315600e4"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20170609T202035Z:229f636d-b33c-418f-a40b-b3e0315600e4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake23342?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjMzNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
- "x-ms-client-request-id": [
- "abb01871-9b3b-454b-abbb-5ab231a099e2"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"3c1e2cfa-69c0-4248-8239-53b1060e056f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake23342\",\r\n \"name\": \"testdatalake23342\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "420"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:20:03 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1770/providers/Microsoft.DataLakeStore/accounts/testdatalake23342/operationresults/0?api-version=2016-11-01"
- ],
- "Retry-After": [
- "10"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3c1e2cfa-69c0-4248-8239-53b1060e056f0?api-version=2016-11-01&expanded=true"
- ],
- "x-ms-request-id": [
- "13f595a2-e3c6-4990-bca1-12743bb8060c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
- ],
- "x-ms-correlation-request-id": [
- "d4a7f712-2744-4ec1-87ae-e37fa1e848ce"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20170609T202004Z:d4a7f712-2744-4ec1-87ae-e37fa1e848ce"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3c1e2cfa-69c0-4248-8239-53b1060e056f0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzNjMWUyY2ZhLTY5YzAtNDI0OC04MjM5LTUzYjEwNjBlMDU2ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:20:33 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "66e1a4dd-95d5-45f2-be80-d46bb006daea"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "7b28a4b0-b96c-4bea-8f17-23c5b8ea8467"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20170609T202034Z:7b28a4b0-b96c-4bea-8f17-23c5b8ea8467"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeAnalytics/accounts/testaba27160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3Rlc3RhYmEyNzE2MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake13536\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake13536\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "290"
- ],
- "x-ms-client-request-id": [
- "fa99daac-1623-43f6-a795-bfd7cf3a05b4"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake13536\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake13536\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"d6240ce7-371b-41db-bf21-07b07187c6ed\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeAnalytics/accounts/testaba27160\",\r\n \"name\": \"testaba27160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "572"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:20:37 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1770/providers/Microsoft.DataLakeAnalytics/accounts/testaba27160/operationresults/0?api-version=2016-11-01"
- ],
- "Retry-After": [
- "10"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/d6240ce7-371b-41db-bf21-07b07187c6ed0?api-version=2016-11-01&expanded=true"
- ],
- "x-ms-request-id": [
- "0b15a94a-592d-426d-b96f-c567487c2859"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
- ],
- "x-ms-correlation-request-id": [
- "67971af4-fb0f-4886-a2cb-c343e0f8b700"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170609T202038Z:67971af4-fb0f-4886-a2cb-c343e0f8b700"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/d6240ce7-371b-41db-bf21-07b07187c6ed0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9kNjI0MGNlNy0zNzFiLTQxZGItYmYyMS0wN2IwNzE4N2M2ZWQwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:08 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "71f761b7-3a9a-459f-8cdd-04a284ebf506"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "cd2d886c-7cc0-400d-84e8-5aa7e6888e6d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170609T202108Z:cd2d886c-7cc0-400d-84e8-5aa7e6888e6d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeAnalytics/accounts/testaba27160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3Rlc3RhYmEyNzE2MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake13536\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake13536\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 250,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba27160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"d6240ce7-371b-41db-bf21-07b07187c6ed\",\r\n \"creationTime\": \"2017-06-09T20:20:41.1222811Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:20:41.1222811Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeAnalytics/accounts/testaba27160\",\r\n \"name\": \"testaba27160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:08 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "d20ee586-ca99-4af6-889c-d7be36a611c7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
- ],
- "x-ms-correlation-request-id": [
- "06268c57-3b85-43fb-9103-ac4a999b7773"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170609T202109Z:06268c57-3b85-43fb-9103-ac4a999b7773"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeAnalytics/accounts/testaba27160?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3Rlc3RhYmEyNzE2MD9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e450b948-7d42-4bfe-ac37-22f7fa79fd09"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake13536\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake13536\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 250,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba27160.azuredatalakeanalytics.net\",\r\n \"accountId\": \"d6240ce7-371b-41db-bf21-07b07187c6ed\",\r\n \"creationTime\": \"2017-06-09T20:20:41.1222811Z\",\r\n \"lastModifiedTime\": \"2017-06-09T20:20:41.1222811Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1770/providers/Microsoft.DataLakeAnalytics/accounts/testaba27160\",\r\n \"name\": \"testaba27160\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:09 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "e28515fc-c1a4-4ec3-9948-69df1088eba4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-correlation-request-id": [
- "b3c5d45d-46a6-427b-99b2-873b9b566089"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170609T202110Z:b3c5d45d-46a6-427b-99b2-873b9b566089"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/c3227894-855f-48b4-9a2b-2d828f22b26d?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYzMyMjc4OTQtODU1Zi00OGI0LTlhMmItMmQ4MjhmMjJiMjZkP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"name\": \"testjob13146\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb14122; CREATE DATABASE testdb14122; \\r\\n//Create Table\\r\\nCREATE TABLE testdb14122.dbo.testtbl19886\\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 (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb14122.dbo.testtbl19886 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb14122.dbo.testtvf16865;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb14122.dbo.testtvf16865()\\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 testdb14122.dbo.testview19091 \\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 testdb14122.dbo.testproc16804()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb14122.dbo.testview19091 \\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}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "2531"
- ],
- "x-ms-client-request-id": [
- "135d37c8-8de0-49a0-ba73-73e07fcdac50"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"c3227894-855f-48b4-9a2b-2d828f22b26d\",\r\n \"name\": \"testjob13146\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:10 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "1e4bc9e1-bcc4-40fe-bdc7-2ba3d27394fe"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/c3227894-855f-48b4-9a2b-2d828f22b26d?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYzMyMjc4OTQtODU1Zi00OGI0LTlhMmItMmQ4MjhmMjJiMjZkP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "928d00be-1226-4214-9e69-d2a2288d2462"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"c3227894-855f-48b4-9a2b-2d828f22b26d\",\r\n \"name\": \"testjob13146\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-09T13:21:11.6980891-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14122; CREATE DATABASE testdb14122; \\n//Create Table\\nCREATE TABLE testdb14122.dbo.testtbl19886\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14122.dbo.testtbl19886 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14122.dbo.testtvf16865;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14122.dbo.testtvf16865()\\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 testdb14122.dbo.testview19091 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14122.dbo.testproc16804()\\nAS BEGIN\\n CREATE VIEW testdb14122.dbo.testview19091 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.1986173S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:11 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c7945ca2-c0e2-43a5-9b50-1245da3492d4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/c3227894-855f-48b4-9a2b-2d828f22b26d?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYzMyMjc4OTQtODU1Zi00OGI0LTlhMmItMmQ4MjhmMjJiMjZkP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c60aac47-2052-4e3e-a09a-f36a6a58ccb0"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"c3227894-855f-48b4-9a2b-2d828f22b26d\",\r\n \"name\": \"testjob13146\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-09T13:21:11.6980891-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14122; CREATE DATABASE testdb14122; \\n//Create Table\\nCREATE TABLE testdb14122.dbo.testtbl19886\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14122.dbo.testtbl19886 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14122.dbo.testtvf16865;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14122.dbo.testtvf16865()\\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 testdb14122.dbo.testview19091 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14122.dbo.testproc16804()\\nAS BEGIN\\n CREATE VIEW testdb14122.dbo.testview19091 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.5744147S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:16 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "3b4dca99-ff92-401a-ba34-0b594929be7e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/c3227894-855f-48b4-9a2b-2d828f22b26d?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYzMyMjc4OTQtODU1Zi00OGI0LTlhMmItMmQ4MjhmMjJiMjZkP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c925986f-12a8-48eb-9100-e377e4134983"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"c3227894-855f-48b4-9a2b-2d828f22b26d\",\r\n \"name\": \"testjob13146\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-09T13:21:11.6980891-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14122; CREATE DATABASE testdb14122; \\n//Create Table\\nCREATE TABLE testdb14122.dbo.testtbl19886\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14122.dbo.testtbl19886 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14122.dbo.testtvf16865;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14122.dbo.testtvf16865()\\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 testdb14122.dbo.testview19091 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14122.dbo.testproc16804()\\nAS BEGIN\\n CREATE VIEW testdb14122.dbo.testview19091 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8379883S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:22 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "8bda6e55-6f42-41fa-8f48-6de94c64ea2d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/c3227894-855f-48b4-9a2b-2d828f22b26d?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYzMyMjc4OTQtODU1Zi00OGI0LTlhMmItMmQ4MjhmMjJiMjZkP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "478b3e54-2f25-4fc2-b156-ae0b676680ed"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"c3227894-855f-48b4-9a2b-2d828f22b26d\",\r\n \"name\": \"testjob13146\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-09T13:21:11.6980891-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-06-09T13:21:25.7451144-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-06-09T13:21:25.7607195-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:7b1e3944-8228-4e3e-acbb-69893ecb7862\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-06-09T13:21:25.7763622-07:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5353478\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5353478\",\r\n \"rootProcessNodeId\": \"7b1e3944-8228-4e3e-acbb-69893ecb7862\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14122; CREATE DATABASE testdb14122; \\n//Create Table\\nCREATE TABLE testdb14122.dbo.testtbl19886\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14122.dbo.testtbl19886 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14122.dbo.testtvf16865;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14122.dbo.testtvf16865()\\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 testdb14122.dbo.testview19091 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14122.dbo.testproc16804()\\nAS BEGIN\\n CREATE VIEW testdb14122.dbo.testview19091 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/algebra.xml\",\r\n \"yarnApplicationId\": 74932,\r\n \"yarnApplicationTimeStamp\": 1496985982015,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.0470253S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156051S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:27 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "65296781-b279-4132-9063-6d3ffca453f4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/c3227894-855f-48b4-9a2b-2d828f22b26d?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYzMyMjc4OTQtODU1Zi00OGI0LTlhMmItMmQ4MjhmMjJiMjZkP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "541a426f-ad6c-4a0d-ab4a-2d70da4762c8"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"c3227894-855f-48b4-9a2b-2d828f22b26d\",\r\n \"name\": \"testjob13146\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-09T13:21:11.6980891-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-06-09T13:21:25.7451144-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-06-09T13:21:25.7607195-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:7b1e3944-8228-4e3e-acbb-69893ecb7862\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-06-09T13:21:25.7763622-07:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5353478\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5353478\",\r\n \"rootProcessNodeId\": \"7b1e3944-8228-4e3e-acbb-69893ecb7862\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14122; CREATE DATABASE testdb14122; \\n//Create Table\\nCREATE TABLE testdb14122.dbo.testtbl19886\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14122.dbo.testtbl19886 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14122.dbo.testtvf16865;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14122.dbo.testtvf16865()\\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 testdb14122.dbo.testview19091 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14122.dbo.testproc16804()\\nAS BEGIN\\n CREATE VIEW testdb14122.dbo.testview19091 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/algebra.xml\",\r\n \"yarnApplicationId\": 74932,\r\n \"yarnApplicationTimeStamp\": 1496985982015,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.0470253S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156051S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:33 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "18b9f7eb-09b8-443f-afac-82e824af9d4f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/c3227894-855f-48b4-9a2b-2d828f22b26d?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYzMyMjc4OTQtODU1Zi00OGI0LTlhMmItMmQ4MjhmMjJiMjZkP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d9c67b84-9618-4287-aaca-e9f3fb5cc9ae"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"c3227894-855f-48b4-9a2b-2d828f22b26d\",\r\n \"name\": \"testjob13146\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"startTime\": \"2017-06-09T13:21:35.0889613-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-09T13:21:11.6980891-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-06-09T13:21:25.7451144-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-06-09T13:21:25.7607195-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:7b1e3944-8228-4e3e-acbb-69893ecb7862\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-06-09T13:21:25.7763622-07:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5353478\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-06-09T13:21:35.0889613-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5353478\",\r\n \"rootProcessNodeId\": \"7b1e3944-8228-4e3e-acbb-69893ecb7862\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14122; CREATE DATABASE testdb14122; \\n//Create Table\\nCREATE TABLE testdb14122.dbo.testtbl19886\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14122.dbo.testtbl19886 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14122.dbo.testtvf16865;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14122.dbo.testtvf16865()\\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 testdb14122.dbo.testview19091 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14122.dbo.testproc16804()\\nAS BEGIN\\n CREATE VIEW testdb14122.dbo.testview19091 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/algebra.xml\",\r\n \"yarnApplicationId\": 74932,\r\n \"yarnApplicationTimeStamp\": 1496985982015,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.0470253S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156051S\",\r\n \"totalRunningTime\": \"PT3.1682966S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:38 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "8ec4ab47-e56f-45bf-ad38-8cbfd9f74aa9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/c3227894-855f-48b4-9a2b-2d828f22b26d?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvYzMyMjc4OTQtODU1Zi00OGI0LTlhMmItMmQ4MjhmMjJiMjZkP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b7153cef-dd0e-45b6-b47a-e3c6f2baf53c"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"c3227894-855f-48b4-9a2b-2d828f22b26d\",\r\n \"name\": \"testjob13146\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"startTime\": \"2017-06-09T13:21:35.0889613-07:00\",\r\n \"endTime\": \"2017-06-09T13:21:38.776538-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-06-09T13:21:11.1980623-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-06-09T13:21:11.6980891-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-06-09T13:21:25.7451144-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-06-09T13:21:25.7607195-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:7b1e3944-8228-4e3e-acbb-69893ecb7862\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-06-09T13:21:25.7763622-07:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5353478\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-06-09T13:21:35.0889613-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-06-09T13:21:38.776538-07:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5353478\",\r\n \"rootProcessNodeId\": \"7b1e3944-8228-4e3e-acbb-69893ecb7862\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14122; CREATE DATABASE testdb14122; \\n//Create Table\\nCREATE TABLE testdb14122.dbo.testtbl19886\\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 (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14122.dbo.testtbl19886 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14122.dbo.testtvf16865;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14122.dbo.testtvf16865()\\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 testdb14122.dbo.testview19091 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14122.dbo.testproc16804()\\nAS BEGIN\\n CREATE VIEW testdb14122.dbo.testview19091 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake13536.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/06/09/20/21/c3227894-855f-48b4-9a2b-2d828f22b26d/algebra.xml\",\r\n \"yarnApplicationId\": 74932,\r\n \"yarnApplicationTimeStamp\": 1496985982015,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT14.0470253S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156051S\",\r\n \"totalRunningTime\": \"PT3.6875767S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:43 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "0486a9bb-67e4-4810-827d-1f13a6112db2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/testdb14122/secrets/testsecret15083?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQxMjIvc2VjcmV0cy90ZXN0c2VjcmV0MTUwODM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"testsecretpwd11038\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "92"
- ],
- "x-ms-client-request-id": [
- "72e23dbe-8cd4-4211-a374-5c69b74ca863"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:45 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "c979247b-2c87-48c2-8c5e-a524e4b456da"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/testdb14122/secrets/testsecret15083?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQxMjIvc2VjcmV0cy90ZXN0c2VjcmV0MTUwODM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"testsecretpwd11038\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "92"
- ],
- "x-ms-client-request-id": [
- "1b22c0a8-c6cd-4ff1-98f1-63094f5e949d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceAlreadyExists\",\r\n \"message\": \"The resource 'adl://testdatalake13536.azuredatalakestore.net/catalog/database/bb716602-e9bd-4beb-8277-35625f9e56bd/credential/testsecret15083' already exists. Trace: 5e8b3d18-2257-4fd6-b587-fedaf34b3b26 Time: 2017-06-09T13:21:46.4227226-07:00\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:45 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5e8b3d18-2257-4fd6-b587-fedaf34b3b26"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 409
- },
- {
- "RequestUri": "/catalog/usql/databases/testdb14122/secrets/testsecret15083dup?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQxMjIvc2VjcmV0cy90ZXN0c2VjcmV0MTUwODNkdXA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"password\": \"testsecretpwd11038\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "92"
- ],
- "x-ms-client-request-id": [
- "46654d20-9525-4b6a-8451-00e88bb35e0c"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:46 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "29f35b91-8c7a-42db-9953-508b53eea76b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/testdb14122/secrets/testsecret15083?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQxMjIvc2VjcmV0cy90ZXN0c2VjcmV0MTUwODM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3734eb2c-c385-4578-a304-083e235cd5ae"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"creationTime\": \"2017-06-09T20:21:45.4139097Z\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:46 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5c1ef5b5-fa1e-47e7-a588-888b16f88bc6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/testdb14122/secrets/testsecret15083?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQxMjIvc2VjcmV0cy90ZXN0c2VjcmV0MTUwODM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "06a57b15-1c1b-4465-9e4b-38a3a0e5a46e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret15083' does not exist. Trace: 0d19d820-d59f-44ba-9c8a-d0b54cb8506e Time: 2017-06-09T13:21:47.8758925-07:00\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:47 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "0d19d820-d59f-44ba-9c8a-d0b54cb8506e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/catalog/usql/databases/testdb14122/secrets/testsecret15083?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQxMjIvc2VjcmV0cy90ZXN0c2VjcmV0MTUwODM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "52f65386-1947-4294-9ca1-fc55dc20e133"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:47 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "e948fdb9-1508-4a9d-afd2-b22dd420ab4c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/testdb14122/secrets?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQxMjIvc2VjcmV0cz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "58de9fc5-23f6-42a0-a5b6-f954329d6638"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:47 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5f5c605b-2af7-4f77-93ad-720beee5d642"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/catalog/usql/databases/testdb14122/secrets/testsecret15083dup?api-version=2016-11-01",
- "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQxMjIvc2VjcmV0cy90ZXN0c2VjcmV0MTUwODNkdXA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "973ce9f0-4900-498e-ae59-edba8cd30018"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25009.03",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/3.0.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret15083dup' does not exist. Trace: bf036a19-bb36-4266-9f3d-6dd511e88265 Time: 2017-06-09T13:21:48.5946324-07:00\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Fri, 09 Jun 2017 20:21:47 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "bf036a19-bb36-4266-9f3d-6dd511e88265"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 404
- }
- ],
- "Names": {
- ".ctor": [
- "rgaba1770",
- "testaba1617",
- "testaba27160",
- "teststorage16810",
- "testdatalake13536",
- "testdatalake23342",
- "testazureblob14678",
- "testdb14122",
- "testtbl19886",
- "testtvf16865",
- "testproc16804",
- "testview19091",
- "testcred19722",
- "testsecret15083",
- "testsecretpwd11038"
- ],
- "CreateCatalog": [
- "c3227894-855f-48b4-9a2b-2d828f22b26d"
- ],
- "RunJobToCompletion": [
- "testjob13146"
- ]
- },
- "Variables": {
- "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f"
- }
-}
\ No newline at end of file
diff --git a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/SubmitGetListCancelTest.json b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/SubmitGetListCancelTest.json
deleted file mode 100644
index ee19db9b75db..000000000000
--- a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/SubmitGetListCancelTest.json
+++ /dev/null
@@ -1,2535 +0,0 @@
-{
- "Entries": [
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "54426293-bccc-4199-b352-87a34960c1eb"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:45:53 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-request-id": [
- "b806720d-581b-4f15-9c1b-6ef8e7657824"
- ],
- "x-ms-correlation-request-id": [
- "b806720d-581b-4f15-9c1b-6ef8e7657824"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164554Z:b806720d-581b-4f15-9c1b-6ef8e7657824"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8c93da60-838a-47c7-9a89-1ac295c2c92b"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:45:54 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
- ],
- "x-ms-request-id": [
- "745c89d6-5060-431f-9421-c380b69c1816"
- ],
- "x-ms-correlation-request-id": [
- "745c89d6-5060-431f-9421-c380b69c1816"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164554Z:745c89d6-5060-431f-9421-c380b69c1816"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "360e7a95-669b-45d6-9a1a-72ec6e6ebf93"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:45:56 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
- ],
- "x-ms-request-id": [
- "a7ea59e5-4954-4aa5-93b2-2c3bde5c800a"
- ],
- "x-ms-correlation-request-id": [
- "a7ea59e5-4954-4aa5-93b2-2c3bde5c800a"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164557Z:a7ea59e5-4954-4aa5-93b2-2c3bde5c800a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "708bfcdc-7d3e-48f1-b549-af811def981b"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:45:56 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
- ],
- "x-ms-request-id": [
- "88db0239-c8c8-41c9-b300-eab4b5d484b6"
- ],
- "x-ms-correlation-request-id": [
- "88db0239-c8c8-41c9-b300-eab4b5d484b6"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164557Z:88db0239-c8c8-41c9-b300-eab4b5d484b6"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2af08314-8d9f-4fbe-8ff3-3e6be87bc62e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:45:57 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
- ],
- "x-ms-request-id": [
- "dfd24598-3a7d-4d02-9a3c-6a2869eb6031"
- ],
- "x-ms-correlation-request-id": [
- "dfd24598-3a7d-4d02-9a3c-6a2869eb6031"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164557Z:dfd24598-3a7d-4d02-9a3c-6a2869eb6031"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1a7fe078-d3f9-4c17-98a8-b133195e9de3"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:45:57 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
- ],
- "x-ms-request-id": [
- "89750ef3-3241-44e0-989e-c6e00ec3c95e"
- ],
- "x-ms-correlation-request-id": [
- "89750ef3-3241-44e0-989e-c6e00ec3c95e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164557Z:89750ef3-3241-44e0-989e-c6e00ec3c95e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba19576?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTk1NzY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "db0dca98-35b7-4939-8abd-58b5b4d44d0b"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba19576' could not be found.\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "102"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:45:57 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-failure-cause": [
- "gateway"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
- ],
- "x-ms-request-id": [
- "0d0e119e-67ad-4e27-b9ec-7752207779cb"
- ],
- "x-ms-correlation-request-id": [
- "0d0e119e-67ad-4e27-b9ec-7752207779cb"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164558Z:0d0e119e-67ad-4e27-b9ec-7752207779cb"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba19576?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTk1NzY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a9ce9f35-8c73-48aa-b839-49997cbb262f"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576\",\r\n \"name\": \"rgaba19576\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:45:58 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
- ],
- "x-ms-request-id": [
- "d4a6e7c0-5a58-4e39-b41a-e43aec4e370e"
- ],
- "x-ms-correlation-request-id": [
- "d4a6e7c0-5a58-4e39-b41a-e43aec4e370e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164559Z:d4a6e7c0-5a58-4e39-b41a-e43aec4e370e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba19576?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTk1NzY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
- "x-ms-client-request-id": [
- "4952acca-63e3-4ae0-bdcb-906658397201"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576\",\r\n \"name\": \"rgaba19576\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "174"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:45:58 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
- ],
- "x-ms-request-id": [
- "bc3b9f4e-b509-4043-bedb-0f71bc429810"
- ],
- "x-ms-correlation-request-id": [
- "bc3b9f4e-b509-4043-bedb-0f71bc429810"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164559Z:bc3b9f4e-b509-4043-bedb-0f71bc429810"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake18282?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MjgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "82ca1696-3e4b-43da-a742-eb5016f9c27e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake18282' under resource group 'rgaba19576' was not found.\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "164"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:46:00 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-failure-cause": [
- "gateway"
- ],
- "x-ms-request-id": [
- "942ab8fe-a6ac-404b-9a87-f6f43fc9287e"
- ],
- "x-ms-correlation-request-id": [
- "942ab8fe-a6ac-404b-9a87-f6f43fc9287e"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164600Z:942ab8fe-a6ac-404b-9a87-f6f43fc9287e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake18282?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MjgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18282.azuredatalakestore.net\",\r\n \"accountId\": \"55c42ea8-ed0e-4e1c-9837-fd925fd039df\",\r\n \"creationTime\": \"2017-09-06T16:46:03.6234215Z\",\r\n \"lastModifiedTime\": \"2017-09-06T16:46:03.6234215Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake18282\",\r\n \"name\": \"testdatalake18282\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:47:04 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "e2fef9fa-67ef-471e-a7a0-eebe1f3a04a6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-correlation-request-id": [
- "14a99d6c-77f0-49c0-bb6a-1e682f36eb16"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164704Z:14a99d6c-77f0-49c0-bb6a-1e682f36eb16"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake18282?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MjgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4e6bc957-785d-4598-b38f-63c9abe092a9"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18282.azuredatalakestore.net\",\r\n \"accountId\": \"55c42ea8-ed0e-4e1c-9837-fd925fd039df\",\r\n \"creationTime\": \"2017-09-06T16:46:03.6234215Z\",\r\n \"lastModifiedTime\": \"2017-09-06T16:46:03.6234215Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake18282\",\r\n \"name\": \"testdatalake18282\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:47:08 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "598bcae5-732f-47ec-ab07-bd7daa6c0c8a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
- ],
- "x-ms-correlation-request-id": [
- "9baec285-835d-400b-a3d5-ffc728b4dc75"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164709Z:9baec285-835d-400b-a3d5-ffc728b4dc75"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake18282?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MjgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "316c0b59-7f27-4920-88b7-bc45d98a53b7"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18282.azuredatalakestore.net\",\r\n \"accountId\": \"55c42ea8-ed0e-4e1c-9837-fd925fd039df\",\r\n \"creationTime\": \"2017-09-06T16:46:03.6234215Z\",\r\n \"lastModifiedTime\": \"2017-09-06T16:46:03.6234215Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake18282\",\r\n \"name\": \"testdatalake18282\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:47:44 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "999474a1-271f-42e6-a9b6-690ccb1285eb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
- ],
- "x-ms-correlation-request-id": [
- "ce39891a-b463-40ef-8108-7b494955f1bb"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164744Z:ce39891a-b463-40ef-8108-7b494955f1bb"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake18282?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MjgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
- "x-ms-client-request-id": [
- "1fcaef2f-9aef-4f71-8ce2-7bfeba79a121"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"55c42ea8-ed0e-4e1c-9837-fd925fd039df\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake18282\",\r\n \"name\": \"testdatalake18282\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "365"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:46:02 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake18282/operationresults/0?api-version=2016-11-01"
- ],
- "Retry-After": [
- "10"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/55c42ea8-ed0e-4e1c-9837-fd925fd039df0?api-version=2016-11-01&expanded=true"
- ],
- "x-ms-request-id": [
- "f1105c35-6d7b-4cb1-97c8-113d75665add"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-correlation-request-id": [
- "4c710212-71af-4455-b50e-23d092a4bdf1"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164602Z:4c710212-71af-4455-b50e-23d092a4bdf1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/55c42ea8-ed0e-4e1c-9837-fd925fd039df0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzU1YzQyZWE4LWVkMGUtNGUxYy05ODM3LWZkOTI1ZmQwMzlkZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:46:32 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "424b9d20-fdc8-4640-ba3d-8d2466207f94"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "c63d355a-e5db-4956-a5d4-7defcf13c7b6"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164633Z:c63d355a-e5db-4956-a5d4-7defcf13c7b6"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/55c42ea8-ed0e-4e1c-9837-fd925fd039df0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzU1YzQyZWE4LWVkMGUtNGUxYy05ODM3LWZkOTI1ZmQwMzlkZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:47:03 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "7b470d32-c9ab-4fce-8666-e00394266d6d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
- ],
- "x-ms-correlation-request-id": [
- "42bda17b-85f9-4079-bd30-5b02c6c31072"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164704Z:42bda17b-85f9-4079-bd30-5b02c6c31072"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake2210?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIyMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1d135d8f-1d84-4ea2-8ab0-592672ed9831"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake2210' under resource group 'rgaba19576' was not found.\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "163"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:47:09 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-failure-cause": [
- "gateway"
- ],
- "x-ms-request-id": [
- "e5fa6620-daed-4bf1-bbf7-fdc170fe9b30"
- ],
- "x-ms-correlation-request-id": [
- "e5fa6620-daed-4bf1-bbf7-fdc170fe9b30"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164710Z:e5fa6620-daed-4bf1-bbf7-fdc170fe9b30"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake2210?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIyMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake2210.azuredatalakestore.net\",\r\n \"accountId\": \"da67b903-de2d-45da-bb5c-2c30d38af627\",\r\n \"creationTime\": \"2017-09-06T16:47:12.7960221Z\",\r\n \"lastModifiedTime\": \"2017-09-06T16:47:12.7960221Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake2210\",\r\n \"name\": \"testdatalake2210\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:47:43 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "2de51ad3-5c4b-444c-a125-57ea72451810"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-correlation-request-id": [
- "64319530-6348-4327-8237-83f863fc040f"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164743Z:64319530-6348-4327-8237-83f863fc040f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake2210?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIyMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0a7dde1a-2ac3-47d5-a98c-ebde2700d84c"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake2210.azuredatalakestore.net\",\r\n \"accountId\": \"da67b903-de2d-45da-bb5c-2c30d38af627\",\r\n \"creationTime\": \"2017-09-06T16:47:12.7960221Z\",\r\n \"lastModifiedTime\": \"2017-09-06T16:47:12.7960221Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake2210\",\r\n \"name\": \"testdatalake2210\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:47:43 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "4fcc5b04-6770-414d-b457-0c1f064cffda"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
- ],
- "x-ms-correlation-request-id": [
- "6641dae4-b1d1-4c57-9a90-b5183fa48d10"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164744Z:6641dae4-b1d1-4c57-9a90-b5183fa48d10"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake2210?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIyMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "31"
- ],
- "x-ms-client-request-id": [
- "cb1cdc20-9de5-4d29-99bf-05e3c19c3419"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"da67b903-de2d-45da-bb5c-2c30d38af627\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake2210\",\r\n \"name\": \"testdatalake2210\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "363"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:47:12 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba19576/providers/Microsoft.DataLakeStore/accounts/testdatalake2210/operationresults/0?api-version=2016-11-01"
- ],
- "Retry-After": [
- "10"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/da67b903-de2d-45da-bb5c-2c30d38af6270?api-version=2016-11-01&expanded=true"
- ],
- "x-ms-request-id": [
- "f96bc800-6428-4a7d-bc0f-5c7628041995"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-correlation-request-id": [
- "43ebcd51-6329-47ec-b751-f943ba2fcd27"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164712Z:43ebcd51-6329-47ec-b751-f943ba2fcd27"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/da67b903-de2d-45da-bb5c-2c30d38af6270?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2RhNjdiOTAzLWRlMmQtNDVkYS1iYjVjLTJjMzBkMzhhZjYyNzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:47:42 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "21846885-753b-453d-afef-a7867fe4fe8f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
- ],
- "x-ms-correlation-request-id": [
- "2cbabff1-722a-4609-b5f7-f1dd7ae8eea9"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164742Z:2cbabff1-722a-4609-b5f7-f1dd7ae8eea9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeAnalytics/accounts/testaba27520?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjc1MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18282\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18282\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "290"
- ],
- "x-ms-client-request-id": [
- "35c2f29b-03eb-4791-8bf9-c2a079f773ca"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18282\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18282\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"00d36210-7b94-453b-87ac-eb7732a6ddec\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeAnalytics/accounts/testaba27520\",\r\n \"name\": \"testaba27520\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "517"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:47:46 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba19576/providers/Microsoft.DataLakeAnalytics/accounts/testaba27520/operationresults/0?api-version=2016-11-01"
- ],
- "Retry-After": [
- "10"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/00d36210-7b94-453b-87ac-eb7732a6ddec0?api-version=2016-11-01&expanded=true"
- ],
- "x-ms-request-id": [
- "09f58d45-c85a-446f-9c99-95ceb89db505"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-correlation-request-id": [
- "8f4130fe-3e1a-4ed6-9c9b-c1d0d35ce003"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164747Z:8f4130fe-3e1a-4ed6-9c9b-c1d0d35ce003"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/00d36210-7b94-453b-87ac-eb7732a6ddec0?api-version=2016-11-01&expanded=true",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8wMGQzNjIxMC03Yjk0LTQ1M2ItODdhYy1lYjc3MzJhNmRkZWMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:19 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "2e22ff11-a767-4987-a53a-4ecf7b67145f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
- ],
- "x-ms-correlation-request-id": [
- "ebe90636-814c-4a68-8a04-225525f5bd97"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164820Z:ebe90636-814c-4a68-8a04-225525f5bd97"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeAnalytics/accounts/testaba27520?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjc1MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18282\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18282\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba27520.azuredatalakeanalytics.net\",\r\n \"accountId\": \"00d36210-7b94-453b-87ac-eb7732a6ddec\",\r\n \"creationTime\": \"2017-09-06T16:47:49.711777Z\",\r\n \"lastModifiedTime\": \"2017-09-06T16:47:49.711777Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeAnalytics/accounts/testaba27520\",\r\n \"name\": \"testaba27520\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "e755fc54-d647-487c-9422-57f8849f630c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
- ],
- "x-ms-correlation-request-id": [
- "22f8b64b-77c1-463a-97b3-46a8eebc022d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164821Z:22f8b64b-77c1-463a-97b3-46a8eebc022d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeAnalytics/accounts/testaba27520?api-version=2016-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk1NzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjc1MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "510b092d-a4d3-47e8-adb1-e63da0080a79"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18282\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18282\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba27520.azuredatalakeanalytics.net\",\r\n \"accountId\": \"00d36210-7b94-453b-87ac-eb7732a6ddec\",\r\n \"creationTime\": \"2017-09-06T16:47:49.711777Z\",\r\n \"lastModifiedTime\": \"2017-09-06T16:47:49.711777Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba19576/providers/Microsoft.DataLakeAnalytics/accounts/testaba27520\",\r\n \"name\": \"testaba27520\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Connection": [
- "close"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/8.5"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-request-id": [
- "2fce111b-b55d-4fd4-a78e-b0787e1ffb73"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
- ],
- "x-ms-correlation-request-id": [
- "7b738250-7423-4705-9ceb-df090dbbf8f7"
- ],
- "x-ms-routing-request-id": [
- "WESTUS2:20170906T164822Z:7b738250-7423-4705-9ceb-df090dbbf8f7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/f0665d97-e29e-4e0f-8cd3-99cdfdcc548c?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZjA2NjVkOTctZTI5ZS00ZTBmLThjZDMtOTljZGZkY2M1NDhjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "86b68e40-1432-4bc3-a8eb-8499bc8f51a5"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:25 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "532c2893-2322-467a-8fc0-da4783ffbfcc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/Jobs/f0665d97-e29e-4e0f-8cd3-99cdfdcc548c?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZjA2NjVkOTctZTI5ZS00ZTBmLThjZDMtOTljZGZkY2M1NDhjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a03029b1-fb50-4431-932d-9b6dc2632735"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"f0665d97-e29e-4e0f-8cd3-99cdfdcc548c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-09-06T09:48:26.8307903-07:00\",\r\n \"endTime\": \"2017-09-06T09:48:27.7682959-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_USER_CJS_CANCELEDBYUSER\",\r\n \"name\": \"CANCELED_BY_USER\",\r\n \"severity\": \"Info\",\r\n \"source\": \"User\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"details\": \"\",\r\n \"description\": \"Job was cancelled by AdlSdkTestApp01@SPI.\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"innerError\": null\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-09-06T09:48:26.8307903-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-09-06T09:48:27.3307762-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-09-06T09:48:27.7682959-07:00\",\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/f0665d97-e29e-4e0f-8cd3-99cdfdcc548c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/f0665d97-e29e-4e0f-8cd3-99cdfdcc548c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/f0665d97-e29e-4e0f-8cd3-99cdfdcc548c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT0.4375197S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"runId\": \"f8121bda-c3bf-4fa1-bf5f-eb559b79d2b5\",\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:27 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "8fb6420f-9461-4a2b-b697-c72cd6b8cc04"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/f0665d97-e29e-4e0f-8cd3-99cdfdcc548c?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZjA2NjVkOTctZTI5ZS00ZTBmLThjZDMtOTljZGZkY2M1NDhjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4ee27fe4-0299-4b70-86c3-c838e12b9251"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"f0665d97-e29e-4e0f-8cd3-99cdfdcc548c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-09-06T09:48:26.8307903-07:00\",\r\n \"endTime\": \"2017-09-06T09:48:27.7682959-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_USER_CJS_CANCELEDBYUSER\",\r\n \"name\": \"CANCELED_BY_USER\",\r\n \"severity\": \"Info\",\r\n \"source\": \"User\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"details\": \"\",\r\n \"description\": \"Job was cancelled by AdlSdkTestApp01@SPI.\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"innerError\": null\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-09-06T09:48:26.8307903-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-09-06T09:48:27.3307762-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-09-06T09:48:27.7682959-07:00\",\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/f0665d97-e29e-4e0f-8cd3-99cdfdcc548c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/f0665d97-e29e-4e0f-8cd3-99cdfdcc548c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/f0665d97-e29e-4e0f-8cd3-99cdfdcc548c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT0.4375197S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"runId\": \"f8121bda-c3bf-4fa1-bf5f-eb559b79d2b5\",\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:28 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "5c500d75-7d2e-41f8-9971-8806ddaed2c3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/f0665d97-e29e-4e0f-8cd3-99cdfdcc548c?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZjA2NjVkOTctZTI5ZS00ZTBmLThjZDMtOTljZGZkY2M1NDhjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"degreeOfParallelism\": 2,\r\n \"related\": {\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"runId\": \"f8121bda-c3bf-4fa1-bf5f-eb559b79d2b5\",\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\"\r\n },\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\"\r\n }\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "559"
- ],
- "x-ms-client-request-id": [
- "aa3111ee-1e02-41d5-ae28-3dd42a7e276b"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"f0665d97-e29e-4e0f-8cd3-99cdfdcc548c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-09-06T09:48:26.8307903-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-09-06T09:48:26.8307903-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/f0665d97-e29e-4e0f-8cd3-99cdfdcc548c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"runId\": \"f8121bda-c3bf-4fa1-bf5f-eb559b79d2b5\",\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:26 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "9f96894c-437c-45b6-970c-93e9736f987e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/f0665d97-e29e-4e0f-8cd3-99cdfdcc548c/CancelJob?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZjA2NjVkOTctZTI5ZS00ZTBmLThjZDMtOTljZGZkY2M1NDhjL0NhbmNlbEpvYj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "54b792dc-aab5-44ad-a9e9-309000cf7640"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "",
- "ResponseHeaders": {
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:27 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "188888d0-5a4f-4b09-a1f8-8495244c96cc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWRkNDZkMzMtNmQ2NS00YzdkLWE4ZTctNGRhZDZkNDdmNDliP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"degreeOfParallelism\": 2,\r\n \"related\": {\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"runId\": \"e7504337-0343-4af3-aa7c-853af56ee6bb\",\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\"\r\n },\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\"\r\n }\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "559"
- ],
- "x-ms-client-request-id": [
- "6dc95314-2c38-461f-9ac3-83c28d6c93bc"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"edd46d33-6d65-4c7d-a8e7-4dad6d47f49b\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"runId\": \"e7504337-0343-4af3-aa7c-853af56ee6bb\",\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:28 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "738e2751-70e2-488a-a838-df9c9e7b7b53"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWRkNDZkMzMtNmQ2NS00YzdkLWE4ZTctNGRhZDZkNDdmNDliP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a3cd5bab-f79d-45c9-9b87-c5c889bb42f5"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"edd46d33-6d65-4c7d-a8e7-4dad6d47f49b\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-09-06T09:48:29.3777044-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.1583817S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"runId\": \"e7504337-0343-4af3-aa7c-853af56ee6bb\",\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:29 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "8e902cc1-c949-4735-96eb-a6c888a5c07e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWRkNDZkMzMtNmQ2NS00YzdkLWE4ZTctNGRhZDZkNDdmNDliP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e2758a7c-f636-4597-ba84-a79b207d4fb2"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"edd46d33-6d65-4c7d-a8e7-4dad6d47f49b\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-09-06T09:48:29.3777044-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.6272145S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"runId\": \"e7504337-0343-4af3-aa7c-853af56ee6bb\",\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:34 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "fedb082d-7fb0-4666-9bc5-ad23614368c2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWRkNDZkMzMtNmQ2NS00YzdkLWE4ZTctNGRhZDZkNDdmNDliP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b0cb9b09-d7b2-4f40-af25-4c4c21fae137"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"edd46d33-6d65-4c7d-a8e7-4dad6d47f49b\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-09-06T09:48:29.3777044-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8616929S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"runId\": \"e7504337-0343-4af3-aa7c-853af56ee6bb\",\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:39 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "e01b1fcb-81d9-4e9b-b623-5dc1ede5dfc2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWRkNDZkMzMtNmQ2NS00YzdkLWE4ZTctNGRhZDZkNDdmNDliP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4425ac28-dfdb-4caa-8dca-b2af82c25e0a"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"edd46d33-6d65-4c7d-a8e7-4dad6d47f49b\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-09-06T09:48:29.3777044-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-09-06T09:48:41.7217485-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-09-06T09:48:41.7373739-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b7f62be7-942c-49ea-8bb7-fbb9eea29e34\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-09-06T09:48:41.7373739-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5404076\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5404076\",\r\n \"rootProcessNodeId\": \"b7f62be7-942c-49ea-8bb7-fbb9eea29e34\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/algebra.xml\",\r\n \"yarnApplicationId\": 82087,\r\n \"yarnApplicationTimeStamp\": 1504637728048,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.3440441S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156254S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"runId\": \"e7504337-0343-4af3-aa7c-853af56ee6bb\",\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:45 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "4d5eb84d-0514-462a-b830-95a50d34bade"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWRkNDZkMzMtNmQ2NS00YzdkLWE4ZTctNGRhZDZkNDdmNDliP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c6a90260-ea6c-4939-a497-7eafdb9e419d"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"edd46d33-6d65-4c7d-a8e7-4dad6d47f49b\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"startTime\": \"2017-09-06T09:48:45.8468481-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-09-06T09:48:29.3777044-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-09-06T09:48:41.7217485-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-09-06T09:48:41.7373739-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b7f62be7-942c-49ea-8bb7-fbb9eea29e34\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-09-06T09:48:41.7373739-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5404076\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-09-06T09:48:45.8468481-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5404076\",\r\n \"rootProcessNodeId\": \"b7f62be7-942c-49ea-8bb7-fbb9eea29e34\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/algebra.xml\",\r\n \"yarnApplicationId\": 82087,\r\n \"yarnApplicationTimeStamp\": 1504637728048,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.3440441S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156254S\",\r\n \"totalRunningTime\": \"PT5.0959027S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"runId\": \"e7504337-0343-4af3-aa7c-853af56ee6bb\",\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:50 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d91f65e2-e90d-4d2d-8939-307e3fa2490a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnMvZWRkNDZkMzMtNmQ2NS00YzdkLWE4ZTctNGRhZDZkNDdmNDliP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a095e257-976b-4b71-8042-7a06a434c8b0"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"edd46d33-6d65-4c7d-a8e7-4dad6d47f49b\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"startTime\": \"2017-09-06T09:48:45.8468481-07:00\",\r\n \"endTime\": \"2017-09-06T09:48:56.5502097-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-09-06T09:48:29.3777044-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-09-06T09:48:41.7217485-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-09-06T09:48:41.7373739-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b7f62be7-942c-49ea-8bb7-fbb9eea29e34\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-09-06T09:48:41.7373739-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5404076\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-09-06T09:48:45.8468481-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-09-06T09:48:56.5502097-07:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5404076\",\r\n \"rootProcessNodeId\": \"b7f62be7-942c-49ea-8bb7-fbb9eea29e34\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/09/06/16/48/edd46d33-6d65-4c7d-a8e7-4dad6d47f49b/algebra.xml\",\r\n \"yarnApplicationId\": 82087,\r\n \"yarnApplicationTimeStamp\": 1504637728048,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.3440441S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156254S\",\r\n \"totalRunningTime\": \"PT10.7033616S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"runId\": \"e7504337-0343-4af3-aa7c-853af56ee6bb\",\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:56 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "4d3c7274-4793-466f-9d73-7a6eb9c31e14"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/Jobs?api-version=2016-11-01",
- "EncodedRequestUri": "L0pvYnM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d7af113a-1c75-4ccd-b040-fdc13cde399e"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"edd46d33-6d65-4c7d-a8e7-4dad6d47f49b\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"startTime\": \"2017-09-06T09:48:45.8468481-07:00\",\r\n \"endTime\": \"2017-09-06T09:48:56.5502097-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"related\": {\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"runId\": \"e7504337-0343-4af3-aa7c-853af56ee6bb\",\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\"\r\n }\r\n },\r\n {\r\n \"jobId\": \"f0665d97-e29e-4e0f-8cd3-99cdfdcc548c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-09-06T09:48:26.8307903-07:00\",\r\n \"endTime\": \"2017-09-06T09:48:27.7682959-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"related\": {\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"runId\": \"f8121bda-c3bf-4fa1-bf5f-eb559b79d2b5\",\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\"\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:56 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "31e6efb8-0bd9-4ee5-9c45-47f17b34d640"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/pipelines/863f9efc-1529-4288-beb7-d5eb83832867?api-version=2016-11-01",
- "EncodedRequestUri": "L3BpcGVsaW5lcy84NjNmOWVmYy0xNTI5LTQyODgtYmViNy1kNWViODM4MzI4Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ef0e42fe-6ee7-41d5-b70f-ce5d07b93164"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 1,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.005946312,\r\n \"lastSubmitTime\": \"2017-09-06T09:48:29.1901966-07:00\",\r\n \"runs\": [\r\n {\r\n \"item1\": \"e7504337-0343-4af3-aa7c-853af56ee6bb\",\r\n \"item2\": \"2017-09-06T09:48:29.1901966-07:00\"\r\n },\r\n {\r\n \"item1\": \"f8121bda-c3bf-4fa1-bf5f-eb559b79d2b5\",\r\n \"item2\": \"2017-09-06T09:48:26.8307903-07:00\"\r\n },\r\n {\r\n \"item1\": \"e7504337-0343-4af3-aa7c-853af56ee6bb\",\r\n \"item2\": \"2017-09-06T09:48:29.1901966-07:00\"\r\n },\r\n {\r\n \"item1\": \"f8121bda-c3bf-4fa1-bf5f-eb559b79d2b5\",\r\n \"item2\": \"2017-09-06T09:48:26.8307903-07:00\"\r\n }\r\n ],\r\n \"recurrences\": [\r\n \"db6db478-2002-4bb3-9489-4a23935e8582\"\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:57 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "d61a53c6-e0fa-48e8-a64f-8234d1476e97"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/pipelines?api-version=2016-11-01",
- "EncodedRequestUri": "L3BpcGVsaW5lcz9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7d314005-363c-4b95-85b8-4ab022498c53"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"pipelineId\": \"863f9efc-1529-4288-beb7-d5eb83832867\",\r\n \"pipelineName\": \"jobPipeline1852\",\r\n \"pipelineUri\": \"https://pipelineuri9000.contoso.com/myJob\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 1,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.005946312,\r\n \"lastSubmitTime\": \"2017-09-06T09:48:29.1901966-07:00\"\r\n }\r\n ],\r\n \"count\": 1\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:58 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "75708efa-a8e8-4cc1-8970-aab38789d256"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/recurrences/db6db478-2002-4bb3-9489-4a23935e8582?api-version=2016-11-01",
- "EncodedRequestUri": "L3JlY3VycmVuY2VzL2RiNmRiNDc4LTIwMDItNGJiMy05NDg5LTRhMjM5MzVlODU4Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f295dd72-f3f2-4ce8-ad54-cf0c6e080868"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 1,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.005946312,\r\n \"lastSubmitTime\": \"2017-09-06T09:48:29.1901966-07:00\"\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:58 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "31198745-e856-4959-a4e6-23fcbe35fc8b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/recurrences?api-version=2016-11-01",
- "EncodedRequestUri": "L3JlY3VycmVuY2VzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "fee7c867-21c2-43fe-8a8f-e05d5cd07167"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"recurrenceId\": \"db6db478-2002-4bb3-9489-4a23935e8582\",\r\n \"recurrenceName\": \"recurrence5656\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 1,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.005946312,\r\n \"lastSubmitTime\": \"2017-09-06T09:48:29.1901966-07:00\"\r\n }\r\n ],\r\n \"count\": 1\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:48:58 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "e7e6d0d6-179d-4a5a-b764-ebe81ff63210"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/BuildJob?api-version=2016-11-01",
- "EncodedRequestUri": "L0J1aWxkSm9iP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "POST",
- "RequestBody": "{\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\"\r\n }\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "189"
- ],
- "x-ms-client-request-id": [
- "5a7e984c-9a3b-4178-81c6-669bbeb61741"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"26bcf95b-776a-4e16-b6d2-da654560b0c1\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 0,\r\n \"priority\": 0,\r\n \"submitTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"properties\": {\r\n \"runtimeVersion\": \"default\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18282.azuredatalakestore.net/system/compilationService/jobs/USql/26bcf95b-776a-4e16-b6d2-da654560b0c1/2017/09/06/16/48/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"diagnostics\": [],\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:49:04 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "27c21a81-81f5-4650-bae2-de48cd6ca25a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/BuildJob?api-version=2016-11-01",
- "EncodedRequestUri": "L0J1aWxkSm9iP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
- "RequestMethod": "POST",
- "RequestBody": "{\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXIST FOO; CREATE DATABASE FOO;\"\r\n }\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "182"
- ],
- "x-ms-client-request-id": [
- "8757bc5b-5feb-434e-9952-94dc1c06b770"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.1.1.0"
- ]
- },
- "ResponseBody": "{\r\n \"jobId\": \"e111ed18-7766-4983-ba0d-8f71f644ba4c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 0,\r\n \"priority\": 0,\r\n \"submitTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Failed\",\r\n \"properties\": {\r\n \"runtimeVersion\": \"default\",\r\n \"script\": \"DROP DATABASE IF EXIST FOO; CREATE DATABASE FOO;\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"diagnostics\": [\r\n {\r\n \"severity\": \"Error\",\r\n \"lineNumber\": 1,\r\n \"columnNumber\": 18,\r\n \"start\": 17,\r\n \"end\": 22,\r\n \"message\": \"E_CSC_USER_SYNTAXERROR: syntax error. Expected one of: EXISTS\"\r\n }\r\n ],\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Cache-Control": [
- "no-store, no-cache, max-age=0, private"
- ],
- "Date": [
- "Wed, 06 Sep 2017 16:49:12 GMT"
- ],
- "Transfer-Encoding": [
- "chunked"
- ],
- "x-ms-request-id": [
- "2f9b50c2-1169-45e9-9f9b-b96a3b1f930c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Strict-Transport-Security": [
- "max-age=15724800; includeSubDomains"
- ]
- },
- "StatusCode": 200
- }
- ],
- "Names": {
- ".ctor": [
- "rgaba19576",
- "testaba19902",
- "testaba27520",
- "teststorage14970",
- "testdatalake18282",
- "testdatalake2210",
- "testazureblob18243",
- "testdb15195",
- "testtbl1745",
- "testtvf14390",
- "testproc11564",
- "testview1620",
- "testcred13115",
- "testsecret13986",
- "testsecretpwd18244"
- ],
- "SubmitGetListCancelTest": [
- "f0665d97-e29e-4e0f-8cd3-99cdfdcc548c",
- "edd46d33-6d65-4c7d-a8e7-4dad6d47f49b",
- "db6db478-2002-4bb3-9489-4a23935e8582",
- "recurrence5656",
- "f8121bda-c3bf-4fa1-bf5f-eb559b79d2b5",
- "e7504337-0343-4af3-aa7c-853af56ee6bb",
- "863f9efc-1529-4288-beb7-d5eb83832867",
- "jobPipeline1852",
- "pipelineuri9000"
- ]
- },
- "Variables": {
- "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db"
- }
-}
\ No newline at end of file
diff --git a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/USqlBuildTest.json b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/USqlBuildTest.json
new file mode 100644
index 000000000000..edb11dbce5b7
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/USqlBuildTest.json
@@ -0,0 +1,2107 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9420ac4a-aabf-473c-904f-8db5a9748b9a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1557"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:08:37 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "f8671e98-d3ef-4880-a1c0-2e0fd2470f7c"
+ ],
+ "x-ms-correlation-request-id": [
+ "f8671e98-d3ef-4880-a1c0-2e0fd2470f7c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190838Z:f8671e98-d3ef-4880-a1c0-2e0fd2470f7c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2e482f32-b4a1-4e49-bcde-cd16098fb040"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1557"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:08:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-request-id": [
+ "3a89b419-85f4-4c5d-bb67-a35636730b65"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a89b419-85f4-4c5d-bb67-a35636730b65"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190839Z:3a89b419-85f4-4c5d-bb67-a35636730b65"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b5125a21-6d70-4e35-80e7-8b06a4c64bdc"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "7210"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:08:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "2d51667f-5055-4d48-bae3-d53509f10542"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d51667f-5055-4d48-bae3-d53509f10542"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190840Z:2d51667f-5055-4d48-bae3-d53509f10542"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5ccc7c8b-771b-4eab-b1e8-225d7e27f5a6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "7210"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:08:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "x-ms-request-id": [
+ "d0edaff3-9a3e-46a6-a4f9-4bcf5b08742f"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0edaff3-9a3e-46a6-a4f9-4bcf5b08742f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190840Z:d0edaff3-9a3e-46a6-a4f9-4bcf5b08742f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cfcebb09-98df-4a40-b9a9-03e055093307"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1224"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:08:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "5ac30066-ff7e-41f9-b3dc-e630c56971de"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ac30066-ff7e-41f9-b3dc-e630c56971de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190840Z:5ac30066-ff7e-41f9-b3dc-e630c56971de"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ab7bcaa7-42be-43d6-8778-acf707c1b9bc"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1224"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:08:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-request-id": [
+ "f61c5393-e0da-4fa3-a715-5539c1008b39"
+ ],
+ "x-ms-correlation-request-id": [
+ "f61c5393-e0da-4fa3-a715-5539c1008b39"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190840Z:f61c5393-e0da-4fa3-a715-5539c1008b39"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba15601?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTU2MDE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "04a360ad-0e7f-4d62-ad3c-3613b6613464"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba15601' could not be found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:08:40 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14991"
+ ],
+ "x-ms-request-id": [
+ "40739da8-dad8-4572-9554-36f7a6cf8175"
+ ],
+ "x-ms-correlation-request-id": [
+ "40739da8-dad8-4572-9554-36f7a6cf8175"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190840Z:40739da8-dad8-4572-9554-36f7a6cf8175"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba15601?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTU2MDE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5b43fa90-f9f6-4f37-88f9-cba67ccce8ad"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601\",\r\n \"name\": \"rgaba15601\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "174"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:08:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14990"
+ ],
+ "x-ms-request-id": [
+ "b1ea9dfa-ed03-4bc5-9d47-963b8e86a7e2"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1ea9dfa-ed03-4bc5-9d47-963b8e86a7e2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190842Z:b1ea9dfa-ed03-4bc5-9d47-963b8e86a7e2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba15601?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTU2MDE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "31"
+ ],
+ "x-ms-client-request-id": [
+ "6fbf8888-009a-48a0-883c-42563d560b5c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601\",\r\n \"name\": \"rgaba15601\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "174"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:08:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-request-id": [
+ "2b551756-1a81-4d75-ac9d-a45d371a83b7"
+ ],
+ "x-ms-correlation-request-id": [
+ "2b551756-1a81-4d75-ac9d-a45d371a83b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190842Z:2b551756-1a81-4d75-ac9d-a45d371a83b7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake13715?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEzNzE1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f45f757f-c69b-46d8-9ba2-4a1f8d47ee3f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake13715' under resource group 'rgaba15601' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "164"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:08:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "b3007428-3c88-4371-bcc9-14da2587f1ab"
+ ],
+ "x-ms-correlation-request-id": [
+ "b3007428-3c88-4371-bcc9-14da2587f1ab"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190843Z:b3007428-3c88-4371-bcc9-14da2587f1ab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake13715?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEzNzE1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13715.azuredatalakestore.net\",\r\n \"accountId\": \"4f667bf4-3463-4b44-ad92-9e33d359b7db\",\r\n \"creationTime\": \"2017-12-22T19:08:45.5927036Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:08:45.5927036Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake13715\",\r\n \"name\": \"testdatalake13715\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "839"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:09:18 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "06b2de23-74ee-4886-89bd-7aaf95c3c9c4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0edcb3e-66de-43bc-89fb-693589282556"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190918Z:f0edcb3e-66de-43bc-89fb-693589282556"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake13715?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEzNzE1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "73f999e4-9c01-40fb-b8e8-577a5c733157"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13715.azuredatalakestore.net\",\r\n \"accountId\": \"4f667bf4-3463-4b44-ad92-9e33d359b7db\",\r\n \"creationTime\": \"2017-12-22T19:08:45.5927036Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:08:45.5927036Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake13715\",\r\n \"name\": \"testdatalake13715\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "839"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:09:19 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "bb91a388-69a5-41a3-9cc3-21d8ae401f7a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-correlation-request-id": [
+ "38490b3c-1920-4f72-95da-d98d7fc7a6c7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190919Z:38490b3c-1920-4f72-95da-d98d7fc7a6c7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake13715?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEzNzE1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bb39e0dd-f7f8-4308-a534-1d542935a972"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13715.azuredatalakestore.net\",\r\n \"accountId\": \"4f667bf4-3463-4b44-ad92-9e33d359b7db\",\r\n \"creationTime\": \"2017-12-22T19:08:45.5927036Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:08:45.5927036Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake13715\",\r\n \"name\": \"testdatalake13715\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "839"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:09:57 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "cf3b0ddc-823f-4eea-b460-73bf9153d049"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-correlation-request-id": [
+ "a2956a61-087f-403d-816e-68b823802371"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190957Z:a2956a61-087f-403d-816e-68b823802371"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake13715?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEzNzE1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "31"
+ ],
+ "x-ms-client-request-id": [
+ "adf88644-4a4b-48bf-8ff8-768da3c2d67f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4f667bf4-3463-4b44-ad92-9e33d359b7db\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake13715\",\r\n \"name\": \"testdatalake13715\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "365"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:08:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake13715/operationresults/0?api-version=2016-11-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4f667bf4-3463-4b44-ad92-9e33d359b7db0?api-version=2016-11-01&expanded=true"
+ ],
+ "x-ms-request-id": [
+ "82bcc169-a24d-44db-a75b-383f26ef0362"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "469d69df-8305-49ab-80f9-f1dbd55ac55b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190845Z:469d69df-8305-49ab-80f9-f1dbd55ac55b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4f667bf4-3463-4b44-ad92-9e33d359b7db0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzRmNjY3YmY0LTM0NjMtNGI0NC1hZDkyLTllMzNkMzU5YjdkYjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:08:56 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "0d8195e4-49f0-4160-b224-ac9396ea7b48"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a73aa49-f8f0-4951-b408-1beb37254dac"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190856Z:4a73aa49-f8f0-4951-b408-1beb37254dac"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4f667bf4-3463-4b44-ad92-9e33d359b7db0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzRmNjY3YmY0LTM0NjMtNGI0NC1hZDkyLTllMzNkMzU5YjdkYjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:09:07 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "ad4034b8-6e03-49ff-8a75-d829eeceb578"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "9dfd344f-8fe6-45e1-8cbd-343c98120870"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190907Z:9dfd344f-8fe6-45e1-8cbd-343c98120870"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4f667bf4-3463-4b44-ad92-9e33d359b7db0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzRmNjY3YmY0LTM0NjMtNGI0NC1hZDkyLTllMzNkMzU5YjdkYjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:09:17 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "1b6532c8-51a2-4c8b-a1d0-6eaa828e0e39"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-correlation-request-id": [
+ "436243ae-9623-4234-8697-60752801daa9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190918Z:436243ae-9623-4234-8697-60752801daa9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake28871?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODcxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d36acca1-48e2-4aa1-82ff-64a32bf34b28"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake28871' under resource group 'rgaba15601' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "164"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:09:20 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "af2232d3-1044-40cd-a616-488226bab561"
+ ],
+ "x-ms-correlation-request-id": [
+ "af2232d3-1044-40cd-a616-488226bab561"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190920Z:af2232d3-1044-40cd-a616-488226bab561"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake28871?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODcxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake28871.azuredatalakestore.net\",\r\n \"accountId\": \"4275a66d-642c-459c-9597-64992834e9d3\",\r\n \"creationTime\": \"2017-12-22T19:09:24.4563022Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:09:24.4563022Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake28871\",\r\n \"name\": \"testdatalake28871\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "839"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:09:55 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "1ff68ac4-8d71-4708-afa9-31457363ee47"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-correlation-request-id": [
+ "b947d436-93c0-4046-9e6c-2147c6dc2a43"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190955Z:b947d436-93c0-4046-9e6c-2147c6dc2a43"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake28871?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODcxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2ef33d8d-526f-4fb9-932b-c8d9bfc2a7f0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake28871.azuredatalakestore.net\",\r\n \"accountId\": \"4275a66d-642c-459c-9597-64992834e9d3\",\r\n \"creationTime\": \"2017-12-22T19:09:24.4563022Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:09:24.4563022Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake28871\",\r\n \"name\": \"testdatalake28871\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "839"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:09:56 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "6f237327-00e2-40b5-9be4-41c28d8ed6e5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-correlation-request-id": [
+ "0093969e-2c64-436c-9f08-f28e798b2f79"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190956Z:0093969e-2c64-436c-9f08-f28e798b2f79"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake28871?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODcxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "31"
+ ],
+ "x-ms-client-request-id": [
+ "663dc7c0-eea0-49dc-b222-325b6841f2b0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4275a66d-642c-459c-9597-64992834e9d3\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake28871\",\r\n \"name\": \"testdatalake28871\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "365"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:09:22 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba15601/providers/Microsoft.DataLakeStore/accounts/testdatalake28871/operationresults/0?api-version=2016-11-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4275a66d-642c-459c-9597-64992834e9d30?api-version=2016-11-01&expanded=true"
+ ],
+ "x-ms-request-id": [
+ "7299dfc3-fc6f-4c67-b264-93ecd171d0e0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff9206be-b43f-4907-a86b-ea86c3de9c4e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190922Z:ff9206be-b43f-4907-a86b-ea86c3de9c4e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4275a66d-642c-459c-9597-64992834e9d30?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQyNzVhNjZkLTY0MmMtNDU5Yy05NTk3LTY0OTkyODM0ZTlkMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:09:32 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "2eafc745-5c2a-4b59-b10d-21f4c6d2abf8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d6b4e59-5580-4e07-b635-762ad02ed4d9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190933Z:5d6b4e59-5580-4e07-b635-762ad02ed4d9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4275a66d-642c-459c-9597-64992834e9d30?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQyNzVhNjZkLTY0MmMtNDU5Yy05NTk3LTY0OTkyODM0ZTlkMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:09:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "9fedd2b8-51f5-40cd-a188-26190f5adfe7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14989"
+ ],
+ "x-ms-correlation-request-id": [
+ "5a8d548a-d895-4e78-9b4d-aea1d9ac5b8c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190944Z:5a8d548a-d895-4e78-9b4d-aea1d9ac5b8c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4275a66d-642c-459c-9597-64992834e9d30?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQyNzVhNjZkLTY0MmMtNDU5Yy05NTk3LTY0OTkyODM0ZTlkMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:09:54 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "10a104af-1d51-4e9c-adfa-dfeb71b68272"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14991"
+ ],
+ "x-ms-correlation-request-id": [
+ "d78127dd-986e-4497-8015-698eb2773f72"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T190955Z:d78127dd-986e-4497-8015-698eb2773f72"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeAnalytics/accounts/testaba27698?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjc2OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake13715\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake13715\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "290"
+ ],
+ "x-ms-client-request-id": [
+ "38b685fa-6272-4d82-ab35-9a78649cb0bc"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake13715\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake13715\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"bbd46013-3232-4117-9448-489b09dd6fc5\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeAnalytics/accounts/testaba27698\",\r\n \"name\": \"testaba27698\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "517"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:09:59 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba15601/providers/Microsoft.DataLakeAnalytics/accounts/testaba27698/operationresults/0?api-version=2016-11-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/bbd46013-3232-4117-9448-489b09dd6fc50?api-version=2016-11-01&expanded=true"
+ ],
+ "x-ms-request-id": [
+ "c3626152-dc51-4d46-9d6f-de0449771dc5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe578575-24cc-4934-9f08-5d0268a270a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191000Z:fe578575-24cc-4934-9f08-5d0268a270a7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/bbd46013-3232-4117-9448-489b09dd6fc50?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iYmQ0NjAxMy0zMjMyLTQxMTctOTQ0OC00ODliMDlkZDZmYzUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:10:10 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "7a8fa595-e0d4-4feb-9fe8-c2fe4c3c8582"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "x-ms-correlation-request-id": [
+ "2a5b4c60-6303-4043-9953-8e785d3252a8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191010Z:2a5b4c60-6303-4043-9953-8e785d3252a8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/bbd46013-3232-4117-9448-489b09dd6fc50?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iYmQ0NjAxMy0zMjMyLTQxMTctOTQ0OC00ODliMDlkZDZmYzUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:10:21 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "be461178-c336-4185-b0e2-6f6fb31ef46c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-correlation-request-id": [
+ "0fcc2b7c-1619-40b3-b872-aad6b805418a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191021Z:0fcc2b7c-1619-40b3-b872-aad6b805418a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/bbd46013-3232-4117-9448-489b09dd6fc50?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iYmQ0NjAxMy0zMjMyLTQxMTctOTQ0OC00ODliMDlkZDZmYzUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:10:33 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "d1a0c69a-2fc9-42ac-b5cd-982dae15bf59"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-correlation-request-id": [
+ "b352f7cb-1a61-476f-9aa9-30fb38d6211c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191033Z:b352f7cb-1a61-476f-9aa9-30fb38d6211c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeAnalytics/accounts/testaba27698?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjc2OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake13715\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake13715\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba27698.azuredatalakeanalytics.net\",\r\n \"accountId\": \"bbd46013-3232-4117-9448-489b09dd6fc5\",\r\n \"creationTime\": \"2017-12-22T19:10:00.7925826Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:10:00.7925826Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeAnalytics/accounts/testaba27698\",\r\n \"name\": \"testaba27698\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:10:33 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "e641fe79-564e-42a8-9919-4a5a1a0632dc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c7a2728-ed44-401b-ae8e-783fa1476915"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191034Z:5c7a2728-ed44-401b-ae8e-783fa1476915"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeAnalytics/accounts/testaba27698?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTU2MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjc2OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a3a7fa50-2a56-435b-8756-1b942502f8fd"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake13715\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake13715\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba27698.azuredatalakeanalytics.net\",\r\n \"accountId\": \"bbd46013-3232-4117-9448-489b09dd6fc5\",\r\n \"creationTime\": \"2017-12-22T19:10:00.7925826Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:10:00.7925826Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba15601/providers/Microsoft.DataLakeAnalytics/accounts/testaba27698\",\r\n \"name\": \"testaba27698\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:10:34 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "be98c25c-f5a4-41d2-9ffc-3b3d724e92fc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "706263e7-be80-4125-a5fb-243a48a455f4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191034Z:706263e7-be80-4125-a5fb-243a48a455f4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/BuildJob?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0J1aWxkSm9iP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "189"
+ ],
+ "x-ms-client-request-id": [
+ "349eb854-3131-4647-bb2c-22d2a1a48c1f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"83ea04fe-65aa-46a1-84b8-937de6e72305\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 0,\r\n \"priority\": 0,\r\n \"submitTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"properties\": {\r\n \"runtimeVersion\": \"adl_20171016_bcdc94ee\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake13715.azuredatalakestore.net/system/compilationService/jobs/USql/83ea04fe-65aa-46a1-84b8-937de6e72305/2017/12/22/19/15/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"diagnostics\": [],\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "668"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:15:48 GMT"
+ ],
+ "x-ms-request-id": [
+ "75720c53-b60f-4dc9-b867-63f88e9ea7ff"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/BuildJob?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0J1aWxkSm9iP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXIST FOO; CREATE DATABASE FOO;\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "182"
+ ],
+ "x-ms-client-request-id": [
+ "39908026-2047-48dd-a009-65dbb4e17f5a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"8c5b61fe-a135-4c4e-aa1c-f81495e7658c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 0,\r\n \"priority\": 0,\r\n \"submitTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Failed\",\r\n \"properties\": {\r\n \"runtimeVersion\": \"\",\r\n \"script\": \"DROP DATABASE IF EXIST FOO; CREATE DATABASE FOO;\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"diagnostics\": [\r\n {\r\n \"severity\": \"Error\",\r\n \"lineNumber\": 1,\r\n \"columnNumber\": 18,\r\n \"start\": 17,\r\n \"end\": 22,\r\n \"message\": \"E_CSC_USER_SYNTAXERROR: syntax error. Expected one of: EXISTS\"\r\n }\r\n ],\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "615"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:15:54 GMT"
+ ],
+ "x-ms-request-id": [
+ "a3308a00-4ca5-4e48-acc0-9638c4debdc5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ ".ctor": [
+ "rgaba15601",
+ "testaba12547",
+ "testaba27698",
+ "teststorage11868",
+ "testdatalake13715",
+ "testdatalake28871",
+ "testazureblob18143",
+ "testdb16778",
+ "testtbl15082",
+ "testtvf11858",
+ "testproc19090",
+ "testview15239",
+ "testcred19505",
+ "testsecret16222",
+ "testsecretpwd19173"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db"
+ }
+}
\ No newline at end of file
diff --git a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/USqlSubmitGetListCancelTest.json b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/USqlSubmitGetListCancelTest.json
new file mode 100644
index 000000000000..7a8ecc1afc87
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/USqlSubmitGetListCancelTest.json
@@ -0,0 +1,2814 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "777f6645-57a8-40be-99b6-4f697e5f8a17"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1557"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:10 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "53c3b0c9-64c8-4fad-8248-1c259e317a4b"
+ ],
+ "x-ms-correlation-request-id": [
+ "53c3b0c9-64c8-4fad-8248-1c259e317a4b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191611Z:53c3b0c9-64c8-4fad-8248-1c259e317a4b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f6866992-966e-4085-9b72-85ddd06f775e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1557"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:10 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-request-id": [
+ "be45a664-4a81-4bfd-b8b9-2f91786e95c8"
+ ],
+ "x-ms-correlation-request-id": [
+ "be45a664-4a81-4bfd-b8b9-2f91786e95c8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191611Z:be45a664-4a81-4bfd-b8b9-2f91786e95c8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c2c48f05-abd7-4c0d-bd54-53199a85b551"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "7210"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:12 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "c1dbc853-8c98-4e10-9421-ca4df87c5ee0"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1dbc853-8c98-4e10-9421-ca4df87c5ee0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191612Z:c1dbc853-8c98-4e10-9421-ca4df87c5ee0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e244631e-489a-4efc-a028-b30f1ef53350"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "7210"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:12 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-request-id": [
+ "bf6c5629-676f-4a0b-9cbd-ac31f14f50ed"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf6c5629-676f-4a0b-9cbd-ac31f14f50ed"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191612Z:bf6c5629-676f-4a0b-9cbd-ac31f14f50ed"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "535043b2-9f55-47f2-9c0d-2dbc6d1ed925"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1224"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:14 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "99be59f0-72ce-4ed2-bf59-a677be3915ee"
+ ],
+ "x-ms-correlation-request-id": [
+ "99be59f0-72ce-4ed2-bf59-a677be3915ee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191614Z:99be59f0-72ce-4ed2-bf59-a677be3915ee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9906c8f2-c4cf-46c5-a22f-bfcaae5b2427"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1224"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:14 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-request-id": [
+ "d737e5ec-a168-48aa-9fba-20d47449684a"
+ ],
+ "x-ms-correlation-request-id": [
+ "d737e5ec-a168-48aa-9fba-20d47449684a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191614Z:d737e5ec-a168-48aa-9fba-20d47449684a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba14091?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTQwOTE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "77f6e8e8-4f4d-4caf-837c-5ce840cfae6f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba14091' could not be found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:14 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "x-ms-request-id": [
+ "9633f83a-7e97-4556-a3d8-b67f740babbb"
+ ],
+ "x-ms-correlation-request-id": [
+ "9633f83a-7e97-4556-a3d8-b67f740babbb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191614Z:9633f83a-7e97-4556-a3d8-b67f740babbb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba14091?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTQwOTE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eea55eb6-c287-453e-be28-d4481fbd5e34"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091\",\r\n \"name\": \"rgaba14091\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "174"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:15 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-request-id": [
+ "35b8ad5d-88b5-4ae1-a743-920b319ff5a4"
+ ],
+ "x-ms-correlation-request-id": [
+ "35b8ad5d-88b5-4ae1-a743-920b319ff5a4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191615Z:35b8ad5d-88b5-4ae1-a743-920b319ff5a4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba14091?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTQwOTE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "31"
+ ],
+ "x-ms-client-request-id": [
+ "d199db33-f385-4ad3-b4a3-88ce59330353"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091\",\r\n \"name\": \"rgaba14091\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "174"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:15 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-request-id": [
+ "60a9a412-6b86-4c39-8844-266e9492fec8"
+ ],
+ "x-ms-correlation-request-id": [
+ "60a9a412-6b86-4c39-8844-266e9492fec8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191615Z:60a9a412-6b86-4c39-8844-266e9492fec8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake12606?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQwOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyNjA2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4d9c04b9-abe1-4411-8d31-8aaae4be52d3"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake12606' under resource group 'rgaba14091' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "164"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:15 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "284efa7e-e576-4101-9e43-d4786f1c4428"
+ ],
+ "x-ms-correlation-request-id": [
+ "284efa7e-e576-4101-9e43-d4786f1c4428"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191616Z:284efa7e-e576-4101-9e43-d4786f1c4428"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake12606?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQwOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyNjA2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12606.azuredatalakestore.net\",\r\n \"accountId\": \"2ec4ee62-b750-4f47-8a6a-d34beba14fc1\",\r\n \"creationTime\": \"2017-12-22T19:16:19.1705493Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:16:19.1705493Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake12606\",\r\n \"name\": \"testdatalake12606\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "839"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:50 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "4cdfac51-628f-41a4-8049-27395cf8e0a6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "16787c58-da03-4b73-8b84-0827dac33646"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191651Z:16787c58-da03-4b73-8b84-0827dac33646"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake12606?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQwOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyNjA2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9762855b-6307-4cc4-89e0-eb090cdf26e3"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12606.azuredatalakestore.net\",\r\n \"accountId\": \"2ec4ee62-b750-4f47-8a6a-d34beba14fc1\",\r\n \"creationTime\": \"2017-12-22T19:16:19.1705493Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:16:19.1705493Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake12606\",\r\n \"name\": \"testdatalake12606\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "839"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:50 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "3db22568-c47d-42c4-b2b4-ade79e22c73a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "x-ms-correlation-request-id": [
+ "dee97ca7-8445-4237-b84e-213ad66dbaf5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191651Z:dee97ca7-8445-4237-b84e-213ad66dbaf5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake12606?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQwOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyNjA2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e2d93c90-019c-46a7-b8b1-80df080cd4ca"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12606.azuredatalakestore.net\",\r\n \"accountId\": \"2ec4ee62-b750-4f47-8a6a-d34beba14fc1\",\r\n \"creationTime\": \"2017-12-22T19:16:19.1705493Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:16:19.1705493Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake12606\",\r\n \"name\": \"testdatalake12606\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "839"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:17:28 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "c10bc420-0ca9-4224-91dd-d2f195cba6f4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f38a66b-a2b0-4159-8bc4-a61b40f59f5f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191728Z:0f38a66b-a2b0-4159-8bc4-a61b40f59f5f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake12606?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQwOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyNjA2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "31"
+ ],
+ "x-ms-client-request-id": [
+ "d2beaf1f-3f85-46ab-b540-589aaa728b7a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"2ec4ee62-b750-4f47-8a6a-d34beba14fc1\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake12606\",\r\n \"name\": \"testdatalake12606\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "365"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:17 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake12606/operationresults/0?api-version=2016-11-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2ec4ee62-b750-4f47-8a6a-d34beba14fc10?api-version=2016-11-01&expanded=true"
+ ],
+ "x-ms-request-id": [
+ "9a22b9f6-f280-42c6-ae60-8122eb95e2ce"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0be1a04-6ede-424f-b20b-554bbd815d25"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191618Z:a0be1a04-6ede-424f-b20b-554bbd815d25"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2ec4ee62-b750-4f47-8a6a-d34beba14fc10?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzJlYzRlZTYyLWI3NTAtNGY0Ny04YTZhLWQzNGJlYmExNGZjMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:29 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "d8196a81-bfbd-49e3-a45f-1cbf97b74696"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-correlation-request-id": [
+ "5528931d-5407-4b51-bce0-703d125470ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191629Z:5528931d-5407-4b51-bce0-703d125470ec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2ec4ee62-b750-4f47-8a6a-d34beba14fc10?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzJlYzRlZTYyLWI3NTAtNGY0Ny04YTZhLWQzNGJlYmExNGZjMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "2605e60e-9e41-4fa7-a8f0-eefa1e9e3955"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-correlation-request-id": [
+ "a9b537a7-2ec3-4f4f-8865-7f43e76eaf81"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191639Z:a9b537a7-2ec3-4f4f-8865-7f43e76eaf81"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2ec4ee62-b750-4f47-8a6a-d34beba14fc10?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzJlYzRlZTYyLWI3NTAtNGY0Ny04YTZhLWQzNGJlYmExNGZjMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:50 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "1ee1819c-8583-4063-aba1-2ce602e86f02"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14991"
+ ],
+ "x-ms-correlation-request-id": [
+ "e927079f-c1fa-4094-a28a-57a163808055"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191650Z:e927079f-c1fa-4094-a28a-57a163808055"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake21037?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQwOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxMDM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f114c37c-4fed-4911-8bb8-7fe7c36e8ceb"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake21037' under resource group 'rgaba14091' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "164"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:51 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "72997e71-7907-46ed-93d8-db2c0b1b1723"
+ ],
+ "x-ms-correlation-request-id": [
+ "72997e71-7907-46ed-93d8-db2c0b1b1723"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191652Z:72997e71-7907-46ed-93d8-db2c0b1b1723"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake21037?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQwOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxMDM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake21037.azuredatalakestore.net\",\r\n \"accountId\": \"0d5d90d7-4785-4284-87bd-57aa60bd3f8a\",\r\n \"creationTime\": \"2017-12-22T19:16:55.4848401Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:16:55.4848401Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake21037\",\r\n \"name\": \"testdatalake21037\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "839"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:17:26 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "ff0e0eaa-7c9c-4286-8d8b-e5d9e78ac100"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "b15686bd-a72a-43f4-b21c-a32305e0a25c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191727Z:b15686bd-a72a-43f4-b21c-a32305e0a25c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake21037?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQwOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxMDM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2ede1426-e9c3-47fb-a13a-b7bfe91201f5"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallAllowDataLakeAnalytics\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake21037.azuredatalakestore.net\",\r\n \"accountId\": \"0d5d90d7-4785-4284-87bd-57aa60bd3f8a\",\r\n \"creationTime\": \"2017-12-22T19:16:55.4848401Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:16:55.4848401Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake21037\",\r\n \"name\": \"testdatalake21037\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "839"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:17:28 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "024f0d84-29a7-4a70-aa25-903712a4e2e9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14990"
+ ],
+ "x-ms-correlation-request-id": [
+ "9715fab7-e163-4c4b-8e07-07af76f2af08"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191728Z:9715fab7-e163-4c4b-8e07-07af76f2af08"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake21037?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQwOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxMDM3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "31"
+ ],
+ "x-ms-client-request-id": [
+ "1741ed38-3414-4eb4-a6cb-f01f7f4d855d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"0d5d90d7-4785-4284-87bd-57aa60bd3f8a\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake21037\",\r\n \"name\": \"testdatalake21037\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "365"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:16:53 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba14091/providers/Microsoft.DataLakeStore/accounts/testdatalake21037/operationresults/0?api-version=2016-11-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0d5d90d7-4785-4284-87bd-57aa60bd3f8a0?api-version=2016-11-01&expanded=true"
+ ],
+ "x-ms-request-id": [
+ "05e0f717-0902-4ba3-ac18-db75d6c5cc95"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "a1a2202b-82fc-4e75-9a73-d61002eac9ce"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191654Z:a1a2202b-82fc-4e75-9a73-d61002eac9ce"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0d5d90d7-4785-4284-87bd-57aa60bd3f8a0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzBkNWQ5MGQ3LTQ3ODUtNDI4NC04N2JkLTU3YWE2MGJkM2Y4YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:17:04 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "69a8901a-d610-426e-9003-6e18979fbdc8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-correlation-request-id": [
+ "483d35c1-12ce-41ac-ad99-d0e4c23bb932"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191705Z:483d35c1-12ce-41ac-ad99-d0e4c23bb932"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0d5d90d7-4785-4284-87bd-57aa60bd3f8a0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzBkNWQ5MGQ3LTQ3ODUtNDI4NC04N2JkLTU3YWE2MGJkM2Y4YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:17:15 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "2214f1f0-9e6f-456d-9ec9-100a7fd580c6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-correlation-request-id": [
+ "56ff7e26-ae5f-43ee-b2c2-f27bbd4531ed"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191716Z:56ff7e26-ae5f-43ee-b2c2-f27bbd4531ed"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0d5d90d7-4785-4284-87bd-57aa60bd3f8a0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzBkNWQ5MGQ3LTQ3ODUtNDI4NC04N2JkLTU3YWE2MGJkM2Y4YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.2.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:17:26 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "2ddab7b1-f43f-478c-aee4-a19546fb3913"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-correlation-request-id": [
+ "54f4d873-2ade-4b15-8021-683208ccaab8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191726Z:54f4d873-2ade-4b15-8021-683208ccaab8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeAnalytics/accounts/testaba24206?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQwOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQyMDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12606\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12606\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "290"
+ ],
+ "x-ms-client-request-id": [
+ "5baa344f-eee2-4914-ac6e-dbc362d665c4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12606\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12606\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"26acb58c-93e3-4179-ae44-f9ebe721302a\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeAnalytics/accounts/testaba24206\",\r\n \"name\": \"testaba24206\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "517"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:17:30 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourcegroups/rgaba14091/providers/Microsoft.DataLakeAnalytics/accounts/testaba24206/operationresults/0?api-version=2016-11-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/26acb58c-93e3-4179-ae44-f9ebe721302a0?api-version=2016-11-01&expanded=true"
+ ],
+ "x-ms-request-id": [
+ "2335d724-3f6b-4af0-8d2a-d93565337002"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "268849f7-1349-4637-8648-170a294e9d28"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191731Z:268849f7-1349-4637-8648-170a294e9d28"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/26acb58c-93e3-4179-ae44-f9ebe721302a0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8yNmFjYjU4Yy05M2UzLTQxNzktYWU0NC1mOWViZTcyMTMwMmEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:17:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "dd492025-9143-4384-93ad-a2a013c9a866"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "d1c8c8ce-0455-43fa-b68a-78669f86ab16"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191741Z:d1c8c8ce-0455-43fa-b68a-78669f86ab16"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/26acb58c-93e3-4179-ae44-f9ebe721302a0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8yNmFjYjU4Yy05M2UzLTQxNzktYWU0NC1mOWViZTcyMTMwMmEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:17:51 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "5aab70cb-fd92-4c58-b604-4e29babf708c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "ab3eeae0-5975-4ac1-ab52-28b712cafa9a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191752Z:ab3eeae0-5975-4ac1-ab52-28b712cafa9a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/26acb58c-93e3-4179-ae44-f9ebe721302a0?api-version=2016-11-01&expanded=true",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8yNmFjYjU4Yy05M2UzLTQxNzktYWU0NC1mOWViZTcyMTMwMmEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:18:02 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "4d161316-d7c7-4310-ba48-790c97bb3e11"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef687c7c-d3d9-434d-8ddf-e98aecc65a61"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191803Z:ef687c7c-d3d9-434d-8ddf-e98aecc65a61"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeAnalytics/accounts/testaba24206?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQwOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQyMDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12606\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12606\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba24206.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26acb58c-93e3-4179-ae44-f9ebe721302a\",\r\n \"creationTime\": \"2017-12-22T19:17:35.5863672Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:17:35.5863672Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeAnalytics/accounts/testaba24206\",\r\n \"name\": \"testaba24206\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1250"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:18:03 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "0fdc6393-b78b-4f67-8972-f4c59baadca7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e79637d-f5c4-4363-9d12-952e261af0e4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191804Z:5e79637d-f5c4-4363-9d12-952e261af0e4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeAnalytics/accounts/testaba24206?api-version=2016-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQzMTlkNmQtNGE2Ni00NzAxLWJiMmYtZTdkYmJkOWFlNGRiL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQwOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQyMDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "557b1cfa-08e9-443d-9337-266fe9497cec"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"debugDataAccessLevel\": \"All\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12606\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12606\"\r\n }\r\n ],\r\n \"publicDataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"adltrainingsampledata\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"ghinsights\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 100,\r\n \"maxJobCount\": 20,\r\n \"systemMaxDegreeOfParallelism\": 100,\r\n \"systemMaxJobCount\": 20,\r\n \"maxDegreeOfParallelismPerJob\": 100,\r\n \"minPriorityPerJob\": 1,\r\n \"computePolicies\": [],\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba24206.azuredatalakeanalytics.net\",\r\n \"accountId\": \"26acb58c-93e3-4179-ae44-f9ebe721302a\",\r\n \"creationTime\": \"2017-12-22T19:17:35.5863672Z\",\r\n \"lastModifiedTime\": \"2017-12-22T19:17:35.5863672Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"id\": \"/subscriptions/04319d6d-4a66-4701-bb2f-e7dbbd9ae4db/resourceGroups/rgaba14091/providers/Microsoft.DataLakeAnalytics/accounts/testaba24206\",\r\n \"name\": \"testaba24206\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1250"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Connection": [
+ "close"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:18:04 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "ade83516-fca9-4c84-bc11-bf36b7feab55"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-correlation-request-id": [
+ "4639e9cd-e1ed-489c-9138-9054073e0e82"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20171222T191805Z:4639e9cd-e1ed-489c-9138-9054073e0e82"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/2faf81e3-318d-4611-b5f0-20469547590b?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvMmZhZjgxZTMtMzE4ZC00NjExLWI1ZjAtMjA0Njk1NDc1OTBiP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "88b48c04-6492-4ac6-8b7e-7eb51a40ed22"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"JobNotFound\",\r\n \"message\": \"Job is not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "62"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:08 GMT"
+ ],
+ "x-ms-request-id": [
+ "ca864e03-e9bc-471c-b628-91e159a3573d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/Jobs/2faf81e3-318d-4611-b5f0-20469547590b?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvMmZhZjgxZTMtMzE4ZC00NjExLWI1ZjAtMjA0Njk1NDc1OTBiP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a7b96476-add3-4daf-a33d-938b21d4eb5f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"2faf81e3-318d-4611-b5f0-20469547590b\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T11:23:10.0183649-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T11:23:10.0183649-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T11:23:10.5183341-08:00\",\r\n \"details\": \"Compilation:41c22682-edf5-4dad-aabc-0ea4c214a84b;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/2faf81e3-318d-4611-b5f0-20469547590b/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/2faf81e3-318d-4611-b5f0-20469547590b/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/2faf81e3-318d-4611-b5f0-20469547590b/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.3057138S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"runId\": \"64f76ae8-c312-4be6-a54b-507c69f11dcf\",\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1875"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:10 GMT"
+ ],
+ "x-ms-request-id": [
+ "1913d303-42ef-4684-bf31-0f07a3e5f65c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/2faf81e3-318d-4611-b5f0-20469547590b?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvMmZhZjgxZTMtMzE4ZC00NjExLWI1ZjAtMjA0Njk1NDc1OTBiP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5bf4431e-7e4a-4fda-aff8-1cef7bb2da61"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"2faf81e3-318d-4611-b5f0-20469547590b\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T11:23:10.0183649-08:00\",\r\n \"endTime\": \"2017-12-22T11:23:11.3308603-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_USER_CJS_CANCELEDBYUSER\",\r\n \"name\": \"CANCELED_BY_USER\",\r\n \"severity\": \"Info\",\r\n \"source\": \"User\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"details\": \"\",\r\n \"description\": \"Job was cancelled by AdlSdkTestApp01@SPI.\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"innerError\": null\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T11:23:10.0183649-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T11:23:10.5183341-08:00\",\r\n \"details\": \"Compilation:41c22682-edf5-4dad-aabc-0ea4c214a84b;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-12-22T11:23:11.3308603-08:00\",\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/2faf81e3-318d-4611-b5f0-20469547590b/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/2faf81e3-318d-4611-b5f0-20469547590b/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/2faf81e3-318d-4611-b5f0-20469547590b/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT0.8125262S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"runId\": \"64f76ae8-c312-4be6-a54b-507c69f11dcf\",\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2312"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:32 GMT"
+ ],
+ "x-ms-request-id": [
+ "0cb3c762-5535-46e1-9aa5-9422c0cf5cc8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/2faf81e3-318d-4611-b5f0-20469547590b?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvMmZhZjgxZTMtMzE4ZC00NjExLWI1ZjAtMjA0Njk1NDc1OTBiP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"degreeOfParallelism\": 2,\r\n \"related\": {\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"runId\": \"64f76ae8-c312-4be6-a54b-507c69f11dcf\",\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\"\r\n },\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"runtimeVersion\": \"default\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "593"
+ ],
+ "x-ms-client-request-id": [
+ "7ef3e0c7-6d87-4734-a9bc-3c5c7eddff58"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"2faf81e3-318d-4611-b5f0-20469547590b\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T11:23:10.0183649-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T11:23:10.0183649-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/2faf81e3-318d-4611-b5f0-20469547590b/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"runId\": \"64f76ae8-c312-4be6-a54b-507c69f11dcf\",\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1187"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:09 GMT"
+ ],
+ "x-ms-request-id": [
+ "2b58bd68-2d62-489a-ba31-270df1ed9712"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/2faf81e3-318d-4611-b5f0-20469547590b/CancelJob?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvMmZhZjgxZTMtMzE4ZC00NjExLWI1ZjAtMjA0Njk1NDc1OTBiL0NhbmNlbEpvYj9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "46997956-8214-49b0-89d6-828f4e3dd535"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:31 GMT"
+ ],
+ "x-ms-request-id": [
+ "398e7ac0-55fc-49a9-828c-912c5dceb14b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/929f4a30-b318-4274-9734-53ea373cce62?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvOTI5ZjRhMzAtYjMxOC00Mjc0LTk3MzQtNTNlYTM3M2NjZTYyP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"degreeOfParallelism\": 2,\r\n \"related\": {\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"runId\": \"5f7b761b-65e2-4208-9b3e-57054d9f73a4\",\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\"\r\n },\r\n \"type\": \"USql\",\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"runtimeVersion\": \"default\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "593"
+ ],
+ "x-ms-client-request-id": [
+ "c706c4b7-7227-4801-8249-98c62ddb4241"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"929f4a30-b318-4274-9734-53ea373cce62\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"runId\": \"5f7b761b-65e2-4208-9b3e-57054d9f73a4\",\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1187"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:32 GMT"
+ ],
+ "x-ms-request-id": [
+ "bdbe2572-e412-47e1-832f-2fa9e1f7cb50"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/929f4a30-b318-4274-9734-53ea373cce62?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvOTI5ZjRhMzAtYjMxOC00Mjc0LTk3MzQtNTNlYTM3M2NjZTYyP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0cd2067c-6df0-452c-a40d-2d465d0eb49d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"929f4a30-b318-4274-9734-53ea373cce62\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T11:23:33.2998367-08:00\",\r\n \"details\": \"Compilation:d32e535e-e0f3-46e4-b6e4-131002e12145;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.2761755S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"runId\": \"5f7b761b-65e2-4208-9b3e-57054d9f73a4\",\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1875"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:33 GMT"
+ ],
+ "x-ms-request-id": [
+ "fb8584af-1c5e-48a1-b629-7b328ae7fb50"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/929f4a30-b318-4274-9734-53ea373cce62?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvOTI5ZjRhMzAtYjMxOC00Mjc0LTk3MzQtNTNlYTM3M2NjZTYyP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9c35be85-c16c-46d3-b9cf-a3f5d580a18a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"929f4a30-b318-4274-9734-53ea373cce62\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T11:23:33.2998367-08:00\",\r\n \"details\": \"Compilation:d32e535e-e0f3-46e4-b6e4-131002e12145;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.7137396S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"runId\": \"5f7b761b-65e2-4208-9b3e-57054d9f73a4\",\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1875"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:38 GMT"
+ ],
+ "x-ms-request-id": [
+ "3455f2d0-f53d-434b-b86b-13bd3a204506"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/929f4a30-b318-4274-9734-53ea373cce62?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvOTI5ZjRhMzAtYjMxOC00Mjc0LTk3MzQtNTNlYTM3M2NjZTYyP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2d357feb-e89f-4b11-9ed0-93bddb0d13d7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"929f4a30-b318-4274-9734-53ea373cce62\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T11:23:33.2998367-08:00\",\r\n \"details\": \"Compilation:d32e535e-e0f3-46e4-b6e4-131002e12145;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.9168995S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"runId\": \"5f7b761b-65e2-4208-9b3e-57054d9f73a4\",\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1876"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:44 GMT"
+ ],
+ "x-ms-request-id": [
+ "d09b927f-252c-4aac-9b0b-ad97685da4a8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/929f4a30-b318-4274-9734-53ea373cce62?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvOTI5ZjRhMzAtYjMxOC00Mjc0LTk3MzQtNTNlYTM3M2NjZTYyP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "862e3b6e-9b27-4463-b52a-7a5e55529a85"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"929f4a30-b318-4274-9734-53ea373cce62\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T11:23:33.2998367-08:00\",\r\n \"details\": \"Compilation:d32e535e-e0f3-46e4-b6e4-131002e12145;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-22T11:23:46.2843254-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-22T11:23:46.2999424-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:316c65de-b8c2-4f58-9f1d-e67d97964037\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-22T11:23:46.3155491-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_bcdc94ee\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_bcdc94ee\",\r\n \"rootProcessNodeId\": \"316c65de-b8c2-4f58-9f1d-e67d97964037\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/algebra.xml\",\r\n \"yarnApplicationId\": 431559,\r\n \"yarnApplicationTimeStamp\": 1513729150045,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.9844887S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015617S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"runId\": \"5f7b761b-65e2-4208-9b3e-57054d9f73a4\",\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "5615"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:49 GMT"
+ ],
+ "x-ms-request-id": [
+ "3ba80edf-5138-4845-a5c8-08d239a39ea9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/929f4a30-b318-4274-9734-53ea373cce62?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvOTI5ZjRhMzAtYjMxOC00Mjc0LTk3MzQtNTNlYTM3M2NjZTYyP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bad6af98-9c4f-4ef5-adcb-226ba9969e66"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"929f4a30-b318-4274-9734-53ea373cce62\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"startTime\": \"2017-12-22T11:23:53.1125214-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T11:23:33.2998367-08:00\",\r\n \"details\": \"Compilation:d32e535e-e0f3-46e4-b6e4-131002e12145;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-22T11:23:46.2843254-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-22T11:23:46.2999424-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:316c65de-b8c2-4f58-9f1d-e67d97964037\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-22T11:23:46.3155491-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_bcdc94ee\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-22T11:23:53.1125214-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_bcdc94ee\",\r\n \"rootProcessNodeId\": \"316c65de-b8c2-4f58-9f1d-e67d97964037\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/algebra.xml\",\r\n \"yarnApplicationId\": 431559,\r\n \"yarnApplicationTimeStamp\": 1513729150045,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.9844887S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015617S\",\r\n \"totalRunningTime\": \"PT1.5894228S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"runId\": \"5f7b761b-65e2-4208-9b3e-57054d9f73a4\",\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "5766"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:54 GMT"
+ ],
+ "x-ms-request-id": [
+ "5a37e0d2-61b8-42c4-864a-39690b249faa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs/929f4a30-b318-4274-9734-53ea373cce62?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnMvOTI5ZjRhMzAtYjMxOC00Mjc0LTk3MzQtNTNlYTM3M2NjZTYyP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "93745c03-2aa0-475a-8b2b-01dcd17e5c45"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"jobId\": \"929f4a30-b318-4274-9734-53ea373cce62\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"startTime\": \"2017-12-22T11:23:53.1125214-08:00\",\r\n \"endTime\": \"2017-12-22T11:23:56.5188017-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-12-22T11:23:33.2998367-08:00\",\r\n \"details\": \"Compilation:d32e535e-e0f3-46e4-b6e4-131002e12145;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-12-22T11:23:46.2843254-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-12-22T11:23:46.2999424-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:316c65de-b8c2-4f58-9f1d-e67d97964037\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-12-22T11:23:46.3155491-08:00\",\r\n \"details\": \"runtimeVersion:adl_20171016_bcdc94ee\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-12-22T11:23:53.1125214-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-12-22T11:23:56.5188017-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"AdlSdkTestApp01@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"PartitionLastRows.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/PartitionLastRows.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeDiagnosisInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeDiagnosisInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"adl_20171016_bcdc94ee\",\r\n \"rootProcessNodeId\": \"316c65de-b8c2-4f58-9f1d-e67d97964037\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12606.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/12/22/19/23/929f4a30-b318-4274-9734-53ea373cce62/algebra.xml\",\r\n \"yarnApplicationId\": 431559,\r\n \"yarnApplicationTimeStamp\": 1513729150045,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.9844887S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.015617S\",\r\n \"totalRunningTime\": \"PT3.4062803S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n },\r\n \"related\": {\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"runId\": \"5f7b761b-65e2-4208-9b3e-57054d9f73a4\",\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "5913"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:59 GMT"
+ ],
+ "x-ms-request-id": [
+ "f48e7b98-b957-4840-a96b-15e06a5bd279"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Jobs?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L0pvYnM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a8974d3e-0f73-4ad0-bba9-01bb5f72643f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"2faf81e3-318d-4611-b5f0-20469547590b\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T11:23:10.0183649-08:00\",\r\n \"endTime\": \"2017-12-22T11:23:11.3308603-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"related\": {\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"runId\": \"64f76ae8-c312-4be6-a54b-507c69f11dcf\",\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\"\r\n }\r\n },\r\n {\r\n \"jobId\": \"929f4a30-b318-4274-9734-53ea373cce62\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"AdlSdkTestApp01@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"startTime\": \"2017-12-22T11:23:53.1125214-08:00\",\r\n \"endTime\": \"2017-12-22T11:23:56.5188017-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"related\": {\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"runId\": \"5f7b761b-65e2-4208-9b3e-57054d9f73a4\",\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1263"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:59 GMT"
+ ],
+ "x-ms-request-id": [
+ "514e8ab3-4085-44c8-a3e6-730f73b3f782"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pipelines/aaef2518-fff4-450b-a875-e470bff4014c?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L3BpcGVsaW5lcy9hYWVmMjUxOC1mZmY0LTQ1MGItYTg3NS1lNDcwYmZmNDAxNGM/YXBpLXZlcnNpb249MjAxNy0wOS0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6b10cea3-8f02-44cd-97db-1f863629c0c1"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 1,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0018923779444444443,\r\n \"lastSubmitTime\": \"2017-12-22T11:23:33.0654583-08:00\",\r\n \"runs\": [\r\n {\r\n \"item1\": \"5f7b761b-65e2-4208-9b3e-57054d9f73a4\",\r\n \"item2\": \"2017-12-22T11:23:33.0654583-08:00\"\r\n },\r\n {\r\n \"item1\": \"64f76ae8-c312-4be6-a54b-507c69f11dcf\",\r\n \"item2\": \"2017-12-22T11:23:10.0183649-08:00\"\r\n },\r\n {\r\n \"item1\": \"5f7b761b-65e2-4208-9b3e-57054d9f73a4\",\r\n \"item2\": \"2017-12-22T11:23:33.0654583-08:00\"\r\n },\r\n {\r\n \"item1\": \"64f76ae8-c312-4be6-a54b-507c69f11dcf\",\r\n \"item2\": \"2017-12-22T11:23:10.0183649-08:00\"\r\n }\r\n ],\r\n \"recurrences\": [\r\n \"cba2c258-7c96-4f23-ae06-b6c195281bfb\"\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "775"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:59 GMT"
+ ],
+ "x-ms-request-id": [
+ "2ce40003-6b5b-4468-b8ae-db53c1be430e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pipelines?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L3BpcGVsaW5lcz9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f1d2a046-5b91-437a-a775-ca9ed26c3aea"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"pipelineId\": \"aaef2518-fff4-450b-a875-e470bff4014c\",\r\n \"pipelineName\": \"jobPipeline1813\",\r\n \"pipelineUri\": \"https://pipelineuri7557.contoso.com/myJob\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 1,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0018923779444444443,\r\n \"lastSubmitTime\": \"2017-12-22T11:23:33.0654583-08:00\"\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "361"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:59 GMT"
+ ],
+ "x-ms-request-id": [
+ "6ccbd801-17bd-486d-ac6a-e53ec144747d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/recurrences/cba2c258-7c96-4f23-ae06-b6c195281bfb?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L3JlY3VycmVuY2VzL2NiYTJjMjU4LTdjOTYtNGYyMy1hZTA2LWI2YzE5NTI4MWJmYj9hcGktdmVyc2lvbj0yMDE3LTA5LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3527c6f2-9e62-4643-8abb-7742887a9f10"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 1,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0018923779444444443,\r\n \"lastSubmitTime\": \"2017-12-22T11:23:33.0654583-08:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "284"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:23:59 GMT"
+ ],
+ "x-ms-request-id": [
+ "853f4634-0b5d-43e8-a871-5e5d27ab5486"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/recurrences?api-version=2017-09-01-preview",
+ "EncodedRequestUri": "L3JlY3VycmVuY2VzP2FwaS12ZXJzaW9uPTIwMTctMDktMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d3151b89-9106-4e54-856a-e2c6c1435eac"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/3.2.3.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"recurrenceId\": \"cba2c258-7c96-4f23-ae06-b6c195281bfb\",\r\n \"recurrenceName\": \"recurrence1231\",\r\n \"numJobsFailed\": 0,\r\n \"numJobsCanceled\": 1,\r\n \"numJobsSucceeded\": 1,\r\n \"auHoursFailed\": 0.0,\r\n \"auHoursCanceled\": 0.0,\r\n \"auHoursSucceeded\": 0.0018923779444444443,\r\n \"lastSubmitTime\": \"2017-12-22T11:23:33.0654583-08:00\"\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "306"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache, max-age=0, private"
+ ],
+ "Date": [
+ "Fri, 22 Dec 2017 19:24:00 GMT"
+ ],
+ "x-ms-request-id": [
+ "3ee0f1f4-2559-4cb5-91d2-621e331e4b6a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=15724800; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ ".ctor": [
+ "rgaba14091",
+ "testaba16214",
+ "testaba24206",
+ "teststorage16393",
+ "testdatalake12606",
+ "testdatalake21037",
+ "testazureblob16735",
+ "testdb18705",
+ "testtbl16055",
+ "testtvf17414",
+ "testproc17364",
+ "testview1277",
+ "testcred18011",
+ "testsecret16561",
+ "testsecretpwd17242"
+ ],
+ "USqlSubmitGetListCancelTest": [
+ "2faf81e3-318d-4611-b5f0-20469547590b",
+ "929f4a30-b318-4274-9734-53ea373cce62",
+ "cba2c258-7c96-4f23-ae06-b6c195281bfb",
+ "recurrence1231",
+ "64f76ae8-c312-4be6-a54b-507c69f11dcf",
+ "5f7b761b-65e2-4208-9b3e-57054d9f73a4",
+ "aaef2518-fff4-450b-a875-e470bff4014c",
+ "jobPipeline1813",
+ "pipelineuri7557"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "04319d6d-4a66-4701-bb2f-e7dbbd9ae4db"
+ }
+}
\ No newline at end of file
diff --git a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs
index 37fa89b6161d..dfe1dad1222a 100644
--- a/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs
+++ b/src/SDKs/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs
@@ -51,7 +51,7 @@ public void TryRegisterSubscriptionForResource(string providerName = "Microsoft.
public void TryCreateResourceGroup(string resourceGroupName, string location)
{
- // get the resource group first
+ // Get the resource group first
bool exists = false;
ResourceGroup newlyCreatedGroup = null;
try
@@ -61,7 +61,7 @@ public void TryCreateResourceGroup(string resourceGroupName, string location)
}
catch
{
- // do nothing because it means it doesn't exist
+ // Do nothing because it means it doesn't exist
}
if (!exists)
@@ -96,7 +96,7 @@ public string TryCreateDataLakeStoreAccount(string resourceGroupName, string loc
}
catch
{
- // do nothing because it doesn't exist
+ // Do nothing because it doesn't exist
}
@@ -108,8 +108,8 @@ public string TryCreateDataLakeStoreAccount(string resourceGroupName, string loc
accountGetResponse = dataLakeStoreManagementClient.Account.Get(resourceGroupName,
accountName);
- // wait for provisioning state to be Succeeded
- // we will wait a maximum of 15 minutes for this to happen and then report failures
+ // Wait for provisioning state to be Succeeded
+ // We will wait a maximum of 15 minutes for this to happen and then report failures
int minutesWaited = 0;
int timeToWaitInMinutes = 15;
while (accountGetResponse.ProvisioningState !=
@@ -147,14 +147,14 @@ public string TryCreateStorageAccount(string resourceGroupName, string storageAc
};
- // retrieve the storage account
+ // Retrieve the storage account
storageManagementClient.StorageAccounts.Create(resourceGroupName, storageAccountName, stoInput);
- // retrieve the storage account primary access key
+ // Retrieve the storage account primary access key
var accessKey = storageManagementClient.StorageAccounts.ListKeys(resourceGroupName, storageAccountName).Keys[0].Value;
ThrowIfTrue(string.IsNullOrEmpty(accessKey), "storageManagementClient.StorageAccounts.ListKeys returned null.");
- // set the storage account suffix
+ // Set the storage account suffix
var getResponse = storageManagementClient.StorageAccounts.GetProperties(resourceGroupName, storageAccountName);
storageAccountSuffix = getResponse.PrimaryEndpoints.Blob.ToString();
storageAccountSuffix = storageAccountSuffix.Replace("https://", "").TrimEnd('/');
@@ -191,8 +191,8 @@ public string TryCreateDataLakeAnalyticsAccount(string resourceGroupName, string
var accountGetResponse = dataLakeAnalyticsManagementClient.Account.Get(resourceGroupName,
accountName);
- // wait for provisioning state to be Succeeded
- // we will wait a maximum of 15 minutes for this to happen and then report failures
+ // Wait for provisioning state to be Succeeded
+ // We will wait a maximum of 15 minutes for this to happen and then report failures
int timeToWaitInMinutes = 15;
int minutesWaited = 0;
while (accountGetResponse.ProvisioningState !=
@@ -218,7 +218,7 @@ public string TryCreateDataLakeAnalyticsAccount(string resourceGroupName, string
public Guid CreateCatalog(string resourceGroupName, string dataLakeAnalyticsAccountName, string dbName,
string tableName, string tvfName, string viewName, string procName)
{
- // build a simple catalog that can be used to retrieve items.
+ // Build a simple catalog that can be used to retrieve items.
var scriptToRun = string.Format(@"
DROP DATABASE IF EXISTS {0}; CREATE DATABASE {0};
//Create Table
@@ -341,7 +341,7 @@ internal Guid RunJobToCompletion(DataLakeAnalyticsJobManagementClient jobClient,
int curWaitInSeconds = 0;
while (getJobResponse.State != JobState.Ended && curWaitInSeconds < maxWaitInSeconds)
{
- // wait 5 seconds before polling again
+ // Wait 5 seconds before polling again
TestUtilities.Wait(5000);
curWaitInSeconds += 5;
getJobResponse = jobClient.Job.Get(dataLakeAnalyticsAccountName, jobCreateResponse.JobId.GetValueOrDefault());
@@ -357,6 +357,7 @@ internal Guid RunJobToCompletion(DataLakeAnalyticsJobManagementClient jobClient,
"Job: {0} did not return success. Current job state: {1}. Actual result: {2}. Error (if any): {3}",
getJobResponse.JobId, getJobResponse.State, getJobResponse.Result,
getJobResponse.ErrorMessage != null && getJobResponse.ErrorMessage.Count > 0 ? getJobResponse.ErrorMessage[0].Details : "no error information returned"));
+
return getJobResponse.JobId.GetValueOrDefault();
}
}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Customizations/DataLakeAnalyticsCustomizationHelper.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Customizations/DataLakeAnalyticsCustomizationHelper.cs
index d8cc1a0024d3..d58ba74dd12f 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Customizations/DataLakeAnalyticsCustomizationHelper.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Customizations/DataLakeAnalyticsCustomizationHelper.cs
@@ -14,7 +14,7 @@ internal static class DataLakeAnalyticsCustomizationHelper
/// This constant is used as the default package version to place in the user agent.
/// It should mirror the package version in the project.json file.
///
- internal const string PackageVersion = "3.1.2-preview";
+ internal const string PackageVersion = "3.2.3-preview";
internal const string DefaultAdlaDnsSuffix = "azuredatalakeanalytics.net";
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperations.cs
index e06310e86aa3..9f2b4819bac8 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperations.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Azure.OData;
@@ -93,7 +92,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (resourceGroupName == null)
{
@@ -309,7 +308,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (Client.ApiVersion == null)
{
@@ -757,6 +756,212 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client)
return _result;
}
+ ///
+ /// Checks whether the specified account name is available or taken.
+ ///
+ ///
+ /// The Resource location without whitespace.
+ ///
+ ///
+ /// Parameters supplied to check the Data Lake Analytics account name
+ /// availability.
+ ///
+ ///
+ /// Headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// A response object containing the response body and response headers.
+ ///
+ public async Task> CheckNameAvailabilityWithHttpMessagesAsync(string location, CheckNameAvailabilityParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ if (location == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "location");
+ }
+ if (parameters == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "parameters");
+ }
+ if (parameters != null)
+ {
+ parameters.Validate();
+ }
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
+ if (Client.SubscriptionId == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId");
+ }
+ // Tracing
+ bool _shouldTrace = ServiceClientTracing.IsEnabled;
+ string _invocationId = null;
+ if (_shouldTrace)
+ {
+ _invocationId = ServiceClientTracing.NextInvocationId.ToString();
+ Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("location", location);
+ tracingParameters.Add("parameters", parameters);
+ tracingParameters.Add("cancellationToken", cancellationToken);
+ ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailability", tracingParameters);
+ }
+ // Construct URL
+ var _baseUrl = Client.BaseUri.AbsoluteUri;
+ var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.DataLakeAnalytics/locations/{location}/checkNameAvailability").ToString();
+ _url = _url.Replace("{location}", System.Uri.EscapeDataString(location));
+ _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
+ List _queryParameters = new List();
+ if (Client.ApiVersion != null)
+ {
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
+ }
+ if (_queryParameters.Count > 0)
+ {
+ _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
+ }
+ // Create HTTP transport objects
+ var _httpRequest = new HttpRequestMessage();
+ HttpResponseMessage _httpResponse = null;
+ _httpRequest.Method = new HttpMethod("POST");
+ _httpRequest.RequestUri = new System.Uri(_url);
+ // Set Headers
+ if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
+ {
+ _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
+ }
+ if (Client.AcceptLanguage != null)
+ {
+ if (_httpRequest.Headers.Contains("accept-language"))
+ {
+ _httpRequest.Headers.Remove("accept-language");
+ }
+ _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
+ }
+
+
+ if (customHeaders != null)
+ {
+ foreach(var _header in customHeaders)
+ {
+ if (_httpRequest.Headers.Contains(_header.Key))
+ {
+ _httpRequest.Headers.Remove(_header.Key);
+ }
+ _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
+ }
+ }
+
+ // Serialize Request
+ string _requestContent = null;
+ if(parameters != null)
+ {
+ _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings);
+ _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
+ _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
+ }
+ // Set Credentials
+ if (Client.Credentials != null)
+ {
+ cancellationToken.ThrowIfCancellationRequested();
+ await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ }
+ // Send Request
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
+ }
+ cancellationToken.ThrowIfCancellationRequested();
+ _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
+ }
+ HttpStatusCode _statusCode = _httpResponse.StatusCode;
+ cancellationToken.ThrowIfCancellationRequested();
+ string _responseContent = null;
+ if ((int)_statusCode != 200)
+ {
+ var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
+ try
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ if (_errorBody != null)
+ {
+ ex = new CloudException(_errorBody.Message);
+ ex.Body = _errorBody;
+ }
+ }
+ catch (JsonException)
+ {
+ // Ignore the exception
+ }
+ ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
+ ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Error(_invocationId, ex);
+ }
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw ex;
+ }
+ // Create Result
+ var _result = new AzureOperationResponse();
+ _result.Request = _httpRequest;
+ _result.Response = _httpResponse;
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ // Deserialize Response
+ if ((int)_statusCode == 200)
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ try
+ {
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ }
+ catch (JsonException ex)
+ {
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
+ }
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Exit(_invocationId, _result);
+ }
+ return _result;
+ }
+
///
/// Creates the specified Data Lake Analytics account. This supplies the user
/// with computation services for Data Lake Analytics workloads
@@ -1132,7 +1337,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client)
HttpStatusCode _statusCode = _httpResponse.StatusCode;
cancellationToken.ThrowIfCancellationRequested();
string _responseContent = null;
- if ((int)_statusCode != 200 && (int)_statusCode != 201)
+ if ((int)_statusCode != 200 && (int)_statusCode != 201 && (int)_statusCode != 202)
{
var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
try
@@ -1210,6 +1415,24 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client)
throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
}
}
+ // Deserialize Response
+ if ((int)_statusCode == 202)
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ try
+ {
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ }
+ catch (JsonException ex)
+ {
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
+ }
+ }
if (_shouldTrace)
{
ServiceClientTracing.Exit(_invocationId, _result);
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs
index e4ca435e5d64..633e1cf3bb2a 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Azure.OData;
@@ -46,7 +45,7 @@ public static partial class AccountOperationsExtensions
/// resources included with the resources in the response, e.g.
/// Categories?$count=true. Optional.
///
- public static IPage ListByResourceGroup(this IAccountOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?))
+ public static IPage ListByResourceGroup(this IAccountOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?))
{
return operations.ListByResourceGroupAsync(resourceGroupName, odataQuery, select, count).GetAwaiter().GetResult();
}
@@ -77,7 +76,7 @@ public static partial class AccountOperationsExtensions
///
/// The cancellation token.
///
- public static async Task> ListByResourceGroupAsync(this IAccountOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken))
+ public static async Task> ListByResourceGroupAsync(this IAccountOperations operations, string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken))
{
using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, odataQuery, select, count, null, cancellationToken).ConfigureAwait(false))
{
@@ -104,7 +103,7 @@ public static partial class AccountOperationsExtensions
/// resources included with the resources in the response, e.g.
/// Categories?$count=true. Optional.
///
- public static IPage List(this IAccountOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?))
+ public static IPage List(this IAccountOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?))
{
return operations.ListAsync(odataQuery, select, count).GetAwaiter().GetResult();
}
@@ -131,7 +130,7 @@ public static partial class AccountOperationsExtensions
///
/// The cancellation token.
///
- public static async Task> ListAsync(this IAccountOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken))
+ public static async Task> ListAsync(this IAccountOperations operations, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken))
{
using (var _result = await operations.ListWithHttpMessagesAsync(odataQuery, select, count, null, cancellationToken).ConfigureAwait(false))
{
@@ -322,6 +321,48 @@ public static DataLakeAnalyticsAccount Get(this IAccountOperations operations, s
}
}
+ ///
+ /// Checks whether the specified account name is available or taken.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Resource location without whitespace.
+ ///
+ ///
+ /// Parameters supplied to check the Data Lake Analytics account name
+ /// availability.
+ ///
+ public static NameAvailabilityInformation CheckNameAvailability(this IAccountOperations operations, string location, CheckNameAvailabilityParameters parameters)
+ {
+ return operations.CheckNameAvailabilityAsync(location, parameters).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Checks whether the specified account name is available or taken.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Resource location without whitespace.
+ ///
+ ///
+ /// Parameters supplied to check the Data Lake Analytics account name
+ /// availability.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task CheckNameAvailabilityAsync(this IAccountOperations operations, string location, CheckNameAvailabilityParameters parameters, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ using (var _result = await operations.CheckNameAvailabilityWithHttpMessagesAsync(location, parameters, null, cancellationToken).ConfigureAwait(false))
+ {
+ return _result.Body;
+ }
+ }
+
///
/// Creates the specified Data Lake Analytics account. This supplies the user
/// with computation services for Data Lake Analytics workloads
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperations.cs
index 72f2e0b0b49c..10a8c8f68225 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperations.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Azure.OData;
@@ -8458,7 +8457,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client)
}
///
- /// Retrieves the specified database from the Data Lake Analytics catalog.
+ /// Retrieves the list of access control list (ACL) entries for the database
+ /// from the Data Lake Analytics catalog.
///
///
/// The Azure Data Lake Analytics account upon which to execute catalog
@@ -8467,6 +8467,18 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client)
///
/// The name of the database.
///
+ ///
+ /// OData parameters to apply to the operation.
+ ///
+ ///
+ /// OData Select statement. Limits the properties on each entry to just those
+ /// requested, e.g. Categories?$select=CategoryName,Description. Optional.
+ ///
+ ///
+ /// The Boolean value of true or false to request a count of the matching
+ /// resources included with the resources in the response, e.g.
+ /// Categories?$count=true. Optional.
+ ///
///
/// Headers that will be added to request.
///
@@ -8488,7 +8500,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task> GetDatabaseWithHttpMessagesAsync(string accountName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task> ListAclsByDatabaseWithHttpMessagesAsync(string accountName, string databaseName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (accountName == null)
{
@@ -8513,18 +8525,37 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client)
{
_invocationId = ServiceClientTracing.NextInvocationId.ToString();
Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("odataQuery", odataQuery);
tracingParameters.Add("accountName", accountName);
tracingParameters.Add("databaseName", databaseName);
+ tracingParameters.Add("select", select);
+ tracingParameters.Add("count", count);
tracingParameters.Add("cancellationToken", cancellationToken);
- ServiceClientTracing.Enter(_invocationId, this, "GetDatabase", tracingParameters);
+ ServiceClientTracing.Enter(_invocationId, this, "ListAclsByDatabase", tracingParameters);
}
// Construct URL
var _baseUrl = Client.BaseUri;
- var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "catalog/usql/databases/{databaseName}";
+ var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "catalog/usql/databases/{databaseName}/acl";
_url = _url.Replace("{accountName}", accountName);
_url = _url.Replace("{adlaCatalogDnsSuffix}", Client.AdlaCatalogDnsSuffix);
_url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName));
List _queryParameters = new List();
+ if (odataQuery != null)
+ {
+ var _odataFilter = odataQuery.ToString();
+ if (!string.IsNullOrEmpty(_odataFilter))
+ {
+ _queryParameters.Add(_odataFilter);
+ }
+ }
+ if (select != null)
+ {
+ _queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(select)));
+ }
+ if (count != null)
+ {
+ _queryParameters.Add(string.Format("$count={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(count, Client.SerializationSettings).Trim('"'))));
+ }
if (Client.ApiVersion != null)
{
_queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
@@ -8622,7 +8653,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client)
throw ex;
}
// Create Result
- var _result = new AzureOperationResponse();
+ var _result = new AzureOperationResponse();
_result.Request = _httpRequest;
_result.Response = _httpResponse;
if (_httpResponse.Headers.Contains("x-ms-request-id"))
@@ -8635,7 +8666,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client)
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
try
{
- _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
}
catch (JsonException ex)
{
@@ -8655,7 +8686,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client)
}
///
- /// Retrieves the list of databases from the Data Lake Analytics catalog.
+ /// Retrieves the list of access control list (ACL) entries for the Data Lake
+ /// Analytics catalog.
///
///
/// The Azure Data Lake Analytics account upon which to execute catalog
@@ -8694,7 +8726,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task>> ListDatabasesWithHttpMessagesAsync(string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task> ListAclsWithHttpMessagesAsync(string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (accountName == null)
{
@@ -8720,11 +8752,11 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client)
tracingParameters.Add("select", select);
tracingParameters.Add("count", count);
tracingParameters.Add("cancellationToken", cancellationToken);
- ServiceClientTracing.Enter(_invocationId, this, "ListDatabases", tracingParameters);
+ ServiceClientTracing.Enter(_invocationId, this, "ListAcls", tracingParameters);
}
// Construct URL
var _baseUrl = Client.BaseUri;
- var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "catalog/usql/databases";
+ var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "catalog/usql/acl";
_url = _url.Replace("{accountName}", accountName);
_url = _url.Replace("{adlaCatalogDnsSuffix}", Client.AdlaCatalogDnsSuffix);
List _queryParameters = new List();
@@ -8841,7 +8873,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client)
throw ex;
}
// Create Result
- var _result = new AzureOperationResponse>();
+ var _result = new AzureOperationResponse();
_result.Request = _httpRequest;
_result.Response = _httpResponse;
if (_httpResponse.Headers.Contains("x-ms-request-id"))
@@ -8854,7 +8886,204 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client)
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
try
{
- _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings);
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ }
+ catch (JsonException ex)
+ {
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
+ }
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Exit(_invocationId, _result);
+ }
+ return _result;
+ }
+
+ ///
+ /// Retrieves the specified database from the Data Lake Analytics catalog.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// The name of the database.
+ ///
+ ///
+ /// Headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// A response object containing the response body and response headers.
+ ///
+ public async Task> GetDatabaseWithHttpMessagesAsync(string accountName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ if (accountName == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "accountName");
+ }
+ if (Client.AdlaCatalogDnsSuffix == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlaCatalogDnsSuffix");
+ }
+ if (databaseName == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "databaseName");
+ }
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
+ // Tracing
+ bool _shouldTrace = ServiceClientTracing.IsEnabled;
+ string _invocationId = null;
+ if (_shouldTrace)
+ {
+ _invocationId = ServiceClientTracing.NextInvocationId.ToString();
+ Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("accountName", accountName);
+ tracingParameters.Add("databaseName", databaseName);
+ tracingParameters.Add("cancellationToken", cancellationToken);
+ ServiceClientTracing.Enter(_invocationId, this, "GetDatabase", tracingParameters);
+ }
+ // Construct URL
+ var _baseUrl = Client.BaseUri;
+ var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "catalog/usql/databases/{databaseName}";
+ _url = _url.Replace("{accountName}", accountName);
+ _url = _url.Replace("{adlaCatalogDnsSuffix}", Client.AdlaCatalogDnsSuffix);
+ _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName));
+ List _queryParameters = new List();
+ if (Client.ApiVersion != null)
+ {
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
+ }
+ if (_queryParameters.Count > 0)
+ {
+ _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
+ }
+ // Create HTTP transport objects
+ var _httpRequest = new HttpRequestMessage();
+ HttpResponseMessage _httpResponse = null;
+ _httpRequest.Method = new HttpMethod("GET");
+ _httpRequest.RequestUri = new System.Uri(_url);
+ // Set Headers
+ if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
+ {
+ _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
+ }
+ if (Client.AcceptLanguage != null)
+ {
+ if (_httpRequest.Headers.Contains("accept-language"))
+ {
+ _httpRequest.Headers.Remove("accept-language");
+ }
+ _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
+ }
+
+
+ if (customHeaders != null)
+ {
+ foreach(var _header in customHeaders)
+ {
+ if (_httpRequest.Headers.Contains(_header.Key))
+ {
+ _httpRequest.Headers.Remove(_header.Key);
+ }
+ _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
+ }
+ }
+
+ // Serialize Request
+ string _requestContent = null;
+ // Set Credentials
+ if (Client.Credentials != null)
+ {
+ cancellationToken.ThrowIfCancellationRequested();
+ await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ }
+ // Send Request
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
+ }
+ cancellationToken.ThrowIfCancellationRequested();
+ _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
+ }
+ HttpStatusCode _statusCode = _httpResponse.StatusCode;
+ cancellationToken.ThrowIfCancellationRequested();
+ string _responseContent = null;
+ if ((int)_statusCode != 200)
+ {
+ var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
+ try
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ if (_errorBody != null)
+ {
+ ex = new CloudException(_errorBody.Message);
+ ex.Body = _errorBody;
+ }
+ }
+ catch (JsonException)
+ {
+ // Ignore the exception
+ }
+ ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
+ ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Error(_invocationId, ex);
+ }
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw ex;
+ }
+ // Create Result
+ var _result = new AzureOperationResponse();
+ _result.Request = _httpRequest;
+ _result.Response = _httpResponse;
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ // Deserialize Response
+ if ((int)_statusCode == 200)
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ try
+ {
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
}
catch (JsonException ex)
{
@@ -8873,6 +9102,1015 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client)
return _result;
}
+ ///
+ /// Retrieves the list of databases from the Data Lake Analytics catalog.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// OData parameters to apply to the operation.
+ ///
+ ///
+ /// OData Select statement. Limits the properties on each entry to just those
+ /// requested, e.g. Categories?$select=CategoryName,Description. Optional.
+ ///
+ ///
+ /// The Boolean value of true or false to request a count of the matching
+ /// resources included with the resources in the response, e.g.
+ /// Categories?$count=true. Optional.
+ ///
+ ///
+ /// Headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// A response object containing the response body and response headers.
+ ///
+ public async Task>> ListDatabasesWithHttpMessagesAsync(string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ if (accountName == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "accountName");
+ }
+ if (Client.AdlaCatalogDnsSuffix == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlaCatalogDnsSuffix");
+ }
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
+ // Tracing
+ bool _shouldTrace = ServiceClientTracing.IsEnabled;
+ string _invocationId = null;
+ if (_shouldTrace)
+ {
+ _invocationId = ServiceClientTracing.NextInvocationId.ToString();
+ Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("odataQuery", odataQuery);
+ tracingParameters.Add("accountName", accountName);
+ tracingParameters.Add("select", select);
+ tracingParameters.Add("count", count);
+ tracingParameters.Add("cancellationToken", cancellationToken);
+ ServiceClientTracing.Enter(_invocationId, this, "ListDatabases", tracingParameters);
+ }
+ // Construct URL
+ var _baseUrl = Client.BaseUri;
+ var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "catalog/usql/databases";
+ _url = _url.Replace("{accountName}", accountName);
+ _url = _url.Replace("{adlaCatalogDnsSuffix}", Client.AdlaCatalogDnsSuffix);
+ List _queryParameters = new List();
+ if (odataQuery != null)
+ {
+ var _odataFilter = odataQuery.ToString();
+ if (!string.IsNullOrEmpty(_odataFilter))
+ {
+ _queryParameters.Add(_odataFilter);
+ }
+ }
+ if (select != null)
+ {
+ _queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(select)));
+ }
+ if (count != null)
+ {
+ _queryParameters.Add(string.Format("$count={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(count, Client.SerializationSettings).Trim('"'))));
+ }
+ if (Client.ApiVersion != null)
+ {
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
+ }
+ if (_queryParameters.Count > 0)
+ {
+ _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
+ }
+ // Create HTTP transport objects
+ var _httpRequest = new HttpRequestMessage();
+ HttpResponseMessage _httpResponse = null;
+ _httpRequest.Method = new HttpMethod("GET");
+ _httpRequest.RequestUri = new System.Uri(_url);
+ // Set Headers
+ if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
+ {
+ _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
+ }
+ if (Client.AcceptLanguage != null)
+ {
+ if (_httpRequest.Headers.Contains("accept-language"))
+ {
+ _httpRequest.Headers.Remove("accept-language");
+ }
+ _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
+ }
+
+
+ if (customHeaders != null)
+ {
+ foreach(var _header in customHeaders)
+ {
+ if (_httpRequest.Headers.Contains(_header.Key))
+ {
+ _httpRequest.Headers.Remove(_header.Key);
+ }
+ _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
+ }
+ }
+
+ // Serialize Request
+ string _requestContent = null;
+ // Set Credentials
+ if (Client.Credentials != null)
+ {
+ cancellationToken.ThrowIfCancellationRequested();
+ await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ }
+ // Send Request
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
+ }
+ cancellationToken.ThrowIfCancellationRequested();
+ _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
+ }
+ HttpStatusCode _statusCode = _httpResponse.StatusCode;
+ cancellationToken.ThrowIfCancellationRequested();
+ string _responseContent = null;
+ if ((int)_statusCode != 200)
+ {
+ var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
+ try
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ if (_errorBody != null)
+ {
+ ex = new CloudException(_errorBody.Message);
+ ex.Body = _errorBody;
+ }
+ }
+ catch (JsonException)
+ {
+ // Ignore the exception
+ }
+ ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
+ ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Error(_invocationId, ex);
+ }
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw ex;
+ }
+ // Create Result
+ var _result = new AzureOperationResponse>();
+ _result.Request = _httpRequest;
+ _result.Response = _httpResponse;
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ // Deserialize Response
+ if ((int)_statusCode == 200)
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ try
+ {
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings);
+ }
+ catch (JsonException ex)
+ {
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
+ }
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Exit(_invocationId, _result);
+ }
+ return _result;
+ }
+
+ ///
+ /// Grants an access control list (ACL) entry to the database from the Data
+ /// Lake Analytics catalog.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// The name of the database.
+ ///
+ ///
+ /// Parameters supplied to create or update an access control list (ACL) entry
+ /// for a database.
+ ///
+ ///
+ /// Headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// A response object containing the response body and response headers.
+ ///
+ public async Task GrantAclToDatabaseWithHttpMessagesAsync(string accountName, string databaseName, AclCreateOrUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ if (accountName == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "accountName");
+ }
+ if (Client.AdlaCatalogDnsSuffix == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlaCatalogDnsSuffix");
+ }
+ if (databaseName == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "databaseName");
+ }
+ if (parameters == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "parameters");
+ }
+ if (parameters != null)
+ {
+ parameters.Validate();
+ }
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
+ string op = "GRANTACE";
+ // Tracing
+ bool _shouldTrace = ServiceClientTracing.IsEnabled;
+ string _invocationId = null;
+ if (_shouldTrace)
+ {
+ _invocationId = ServiceClientTracing.NextInvocationId.ToString();
+ Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("accountName", accountName);
+ tracingParameters.Add("databaseName", databaseName);
+ tracingParameters.Add("parameters", parameters);
+ tracingParameters.Add("op", op);
+ tracingParameters.Add("cancellationToken", cancellationToken);
+ ServiceClientTracing.Enter(_invocationId, this, "GrantAclToDatabase", tracingParameters);
+ }
+ // Construct URL
+ var _baseUrl = Client.BaseUri;
+ var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "catalog/usql/databases/{databaseName}/acl";
+ _url = _url.Replace("{accountName}", accountName);
+ _url = _url.Replace("{adlaCatalogDnsSuffix}", Client.AdlaCatalogDnsSuffix);
+ _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName));
+ List _queryParameters = new List();
+ if (op != null)
+ {
+ _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op)));
+ }
+ if (Client.ApiVersion != null)
+ {
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
+ }
+ if (_queryParameters.Count > 0)
+ {
+ _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
+ }
+ // Create HTTP transport objects
+ var _httpRequest = new HttpRequestMessage();
+ HttpResponseMessage _httpResponse = null;
+ _httpRequest.Method = new HttpMethod("POST");
+ _httpRequest.RequestUri = new System.Uri(_url);
+ // Set Headers
+ if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
+ {
+ _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
+ }
+ if (Client.AcceptLanguage != null)
+ {
+ if (_httpRequest.Headers.Contains("accept-language"))
+ {
+ _httpRequest.Headers.Remove("accept-language");
+ }
+ _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
+ }
+
+
+ if (customHeaders != null)
+ {
+ foreach(var _header in customHeaders)
+ {
+ if (_httpRequest.Headers.Contains(_header.Key))
+ {
+ _httpRequest.Headers.Remove(_header.Key);
+ }
+ _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
+ }
+ }
+
+ // Serialize Request
+ string _requestContent = null;
+ if(parameters != null)
+ {
+ _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings);
+ _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
+ _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
+ }
+ // Set Credentials
+ if (Client.Credentials != null)
+ {
+ cancellationToken.ThrowIfCancellationRequested();
+ await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ }
+ // Send Request
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
+ }
+ cancellationToken.ThrowIfCancellationRequested();
+ _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
+ }
+ HttpStatusCode _statusCode = _httpResponse.StatusCode;
+ cancellationToken.ThrowIfCancellationRequested();
+ string _responseContent = null;
+ if ((int)_statusCode != 200)
+ {
+ var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
+ try
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ if (_errorBody != null)
+ {
+ ex = new CloudException(_errorBody.Message);
+ ex.Body = _errorBody;
+ }
+ }
+ catch (JsonException)
+ {
+ // Ignore the exception
+ }
+ ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
+ ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Error(_invocationId, ex);
+ }
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw ex;
+ }
+ // Create Result
+ var _result = new AzureOperationResponse();
+ _result.Request = _httpRequest;
+ _result.Response = _httpResponse;
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Exit(_invocationId, _result);
+ }
+ return _result;
+ }
+
+ ///
+ /// Revokes an access control list (ACL) entry for the database from the Data
+ /// Lake Analytics catalog.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// The name of the database.
+ ///
+ ///
+ /// Parameters supplied to delete an access control list (ACL) entry for a
+ /// database.
+ ///
+ ///
+ /// Headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// A response object containing the response body and response headers.
+ ///
+ public async Task RevokeAclFromDatabaseWithHttpMessagesAsync(string accountName, string databaseName, AclDeleteParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ if (accountName == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "accountName");
+ }
+ if (Client.AdlaCatalogDnsSuffix == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlaCatalogDnsSuffix");
+ }
+ if (databaseName == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "databaseName");
+ }
+ if (parameters == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "parameters");
+ }
+ if (parameters != null)
+ {
+ parameters.Validate();
+ }
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
+ string op = "REVOKEACE";
+ // Tracing
+ bool _shouldTrace = ServiceClientTracing.IsEnabled;
+ string _invocationId = null;
+ if (_shouldTrace)
+ {
+ _invocationId = ServiceClientTracing.NextInvocationId.ToString();
+ Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("accountName", accountName);
+ tracingParameters.Add("databaseName", databaseName);
+ tracingParameters.Add("parameters", parameters);
+ tracingParameters.Add("op", op);
+ tracingParameters.Add("cancellationToken", cancellationToken);
+ ServiceClientTracing.Enter(_invocationId, this, "RevokeAclFromDatabase", tracingParameters);
+ }
+ // Construct URL
+ var _baseUrl = Client.BaseUri;
+ var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "catalog/usql/databases/{databaseName}/acl";
+ _url = _url.Replace("{accountName}", accountName);
+ _url = _url.Replace("{adlaCatalogDnsSuffix}", Client.AdlaCatalogDnsSuffix);
+ _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName));
+ List _queryParameters = new List();
+ if (op != null)
+ {
+ _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op)));
+ }
+ if (Client.ApiVersion != null)
+ {
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
+ }
+ if (_queryParameters.Count > 0)
+ {
+ _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
+ }
+ // Create HTTP transport objects
+ var _httpRequest = new HttpRequestMessage();
+ HttpResponseMessage _httpResponse = null;
+ _httpRequest.Method = new HttpMethod("POST");
+ _httpRequest.RequestUri = new System.Uri(_url);
+ // Set Headers
+ if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
+ {
+ _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
+ }
+ if (Client.AcceptLanguage != null)
+ {
+ if (_httpRequest.Headers.Contains("accept-language"))
+ {
+ _httpRequest.Headers.Remove("accept-language");
+ }
+ _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
+ }
+
+
+ if (customHeaders != null)
+ {
+ foreach(var _header in customHeaders)
+ {
+ if (_httpRequest.Headers.Contains(_header.Key))
+ {
+ _httpRequest.Headers.Remove(_header.Key);
+ }
+ _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
+ }
+ }
+
+ // Serialize Request
+ string _requestContent = null;
+ if(parameters != null)
+ {
+ _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings);
+ _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
+ _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
+ }
+ // Set Credentials
+ if (Client.Credentials != null)
+ {
+ cancellationToken.ThrowIfCancellationRequested();
+ await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ }
+ // Send Request
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
+ }
+ cancellationToken.ThrowIfCancellationRequested();
+ _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
+ }
+ HttpStatusCode _statusCode = _httpResponse.StatusCode;
+ cancellationToken.ThrowIfCancellationRequested();
+ string _responseContent = null;
+ if ((int)_statusCode != 200)
+ {
+ var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
+ try
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ if (_errorBody != null)
+ {
+ ex = new CloudException(_errorBody.Message);
+ ex.Body = _errorBody;
+ }
+ }
+ catch (JsonException)
+ {
+ // Ignore the exception
+ }
+ ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
+ ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Error(_invocationId, ex);
+ }
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw ex;
+ }
+ // Create Result
+ var _result = new AzureOperationResponse();
+ _result.Request = _httpRequest;
+ _result.Response = _httpResponse;
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Exit(_invocationId, _result);
+ }
+ return _result;
+ }
+
+ ///
+ /// Grants an access control list (ACL) entry to the Data Lake Analytics
+ /// catalog.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// Parameters supplied to create or update an access control list (ACL) entry
+ /// for a Data Lake Analytics catalog.
+ ///
+ ///
+ /// Headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// A response object containing the response body and response headers.
+ ///
+ public async Task GrantAclWithHttpMessagesAsync(string accountName, AclCreateOrUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ if (accountName == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "accountName");
+ }
+ if (Client.AdlaCatalogDnsSuffix == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlaCatalogDnsSuffix");
+ }
+ if (parameters == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "parameters");
+ }
+ if (parameters != null)
+ {
+ parameters.Validate();
+ }
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
+ string op = "GRANTACE";
+ // Tracing
+ bool _shouldTrace = ServiceClientTracing.IsEnabled;
+ string _invocationId = null;
+ if (_shouldTrace)
+ {
+ _invocationId = ServiceClientTracing.NextInvocationId.ToString();
+ Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("accountName", accountName);
+ tracingParameters.Add("parameters", parameters);
+ tracingParameters.Add("op", op);
+ tracingParameters.Add("cancellationToken", cancellationToken);
+ ServiceClientTracing.Enter(_invocationId, this, "GrantAcl", tracingParameters);
+ }
+ // Construct URL
+ var _baseUrl = Client.BaseUri;
+ var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "catalog/usql/acl";
+ _url = _url.Replace("{accountName}", accountName);
+ _url = _url.Replace("{adlaCatalogDnsSuffix}", Client.AdlaCatalogDnsSuffix);
+ List _queryParameters = new List();
+ if (op != null)
+ {
+ _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op)));
+ }
+ if (Client.ApiVersion != null)
+ {
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
+ }
+ if (_queryParameters.Count > 0)
+ {
+ _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
+ }
+ // Create HTTP transport objects
+ var _httpRequest = new HttpRequestMessage();
+ HttpResponseMessage _httpResponse = null;
+ _httpRequest.Method = new HttpMethod("POST");
+ _httpRequest.RequestUri = new System.Uri(_url);
+ // Set Headers
+ if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
+ {
+ _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
+ }
+ if (Client.AcceptLanguage != null)
+ {
+ if (_httpRequest.Headers.Contains("accept-language"))
+ {
+ _httpRequest.Headers.Remove("accept-language");
+ }
+ _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
+ }
+
+
+ if (customHeaders != null)
+ {
+ foreach(var _header in customHeaders)
+ {
+ if (_httpRequest.Headers.Contains(_header.Key))
+ {
+ _httpRequest.Headers.Remove(_header.Key);
+ }
+ _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
+ }
+ }
+
+ // Serialize Request
+ string _requestContent = null;
+ if(parameters != null)
+ {
+ _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings);
+ _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
+ _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
+ }
+ // Set Credentials
+ if (Client.Credentials != null)
+ {
+ cancellationToken.ThrowIfCancellationRequested();
+ await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ }
+ // Send Request
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
+ }
+ cancellationToken.ThrowIfCancellationRequested();
+ _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
+ }
+ HttpStatusCode _statusCode = _httpResponse.StatusCode;
+ cancellationToken.ThrowIfCancellationRequested();
+ string _responseContent = null;
+ if ((int)_statusCode != 200)
+ {
+ var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
+ try
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ if (_errorBody != null)
+ {
+ ex = new CloudException(_errorBody.Message);
+ ex.Body = _errorBody;
+ }
+ }
+ catch (JsonException)
+ {
+ // Ignore the exception
+ }
+ ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
+ ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Error(_invocationId, ex);
+ }
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw ex;
+ }
+ // Create Result
+ var _result = new AzureOperationResponse();
+ _result.Request = _httpRequest;
+ _result.Response = _httpResponse;
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Exit(_invocationId, _result);
+ }
+ return _result;
+ }
+
+ ///
+ /// Revokes an access control list (ACL) entry from the Data Lake Analytics
+ /// catalog.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// Parameters supplied to delete an access control list (ACL) entry from a
+ /// Data Lake Analytics catalog.
+ ///
+ ///
+ /// Headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// A response object containing the response body and response headers.
+ ///
+ public async Task RevokeAclWithHttpMessagesAsync(string accountName, AclDeleteParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ if (accountName == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "accountName");
+ }
+ if (Client.AdlaCatalogDnsSuffix == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlaCatalogDnsSuffix");
+ }
+ if (parameters == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "parameters");
+ }
+ if (parameters != null)
+ {
+ parameters.Validate();
+ }
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
+ string op = "REVOKEACE";
+ // Tracing
+ bool _shouldTrace = ServiceClientTracing.IsEnabled;
+ string _invocationId = null;
+ if (_shouldTrace)
+ {
+ _invocationId = ServiceClientTracing.NextInvocationId.ToString();
+ Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("accountName", accountName);
+ tracingParameters.Add("parameters", parameters);
+ tracingParameters.Add("op", op);
+ tracingParameters.Add("cancellationToken", cancellationToken);
+ ServiceClientTracing.Enter(_invocationId, this, "RevokeAcl", tracingParameters);
+ }
+ // Construct URL
+ var _baseUrl = Client.BaseUri;
+ var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "catalog/usql/acl";
+ _url = _url.Replace("{accountName}", accountName);
+ _url = _url.Replace("{adlaCatalogDnsSuffix}", Client.AdlaCatalogDnsSuffix);
+ List _queryParameters = new List();
+ if (op != null)
+ {
+ _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op)));
+ }
+ if (Client.ApiVersion != null)
+ {
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
+ }
+ if (_queryParameters.Count > 0)
+ {
+ _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
+ }
+ // Create HTTP transport objects
+ var _httpRequest = new HttpRequestMessage();
+ HttpResponseMessage _httpResponse = null;
+ _httpRequest.Method = new HttpMethod("POST");
+ _httpRequest.RequestUri = new System.Uri(_url);
+ // Set Headers
+ if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
+ {
+ _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
+ }
+ if (Client.AcceptLanguage != null)
+ {
+ if (_httpRequest.Headers.Contains("accept-language"))
+ {
+ _httpRequest.Headers.Remove("accept-language");
+ }
+ _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
+ }
+
+
+ if (customHeaders != null)
+ {
+ foreach(var _header in customHeaders)
+ {
+ if (_httpRequest.Headers.Contains(_header.Key))
+ {
+ _httpRequest.Headers.Remove(_header.Key);
+ }
+ _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
+ }
+ }
+
+ // Serialize Request
+ string _requestContent = null;
+ if(parameters != null)
+ {
+ _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings);
+ _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
+ _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
+ }
+ // Set Credentials
+ if (Client.Credentials != null)
+ {
+ cancellationToken.ThrowIfCancellationRequested();
+ await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ }
+ // Send Request
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
+ }
+ cancellationToken.ThrowIfCancellationRequested();
+ _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
+ }
+ HttpStatusCode _statusCode = _httpResponse.StatusCode;
+ cancellationToken.ThrowIfCancellationRequested();
+ string _responseContent = null;
+ if ((int)_statusCode != 200)
+ {
+ var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
+ try
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ if (_errorBody != null)
+ {
+ ex = new CloudException(_errorBody.Message);
+ ex.Body = _errorBody;
+ }
+ }
+ catch (JsonException)
+ {
+ // Ignore the exception
+ }
+ ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
+ ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Error(_invocationId, ex);
+ }
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw ex;
+ }
+ // Create Result
+ var _result = new AzureOperationResponse();
+ _result.Request = _httpRequest;
+ _result.Response = _httpResponse;
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Exit(_invocationId, _result);
+ }
+ return _result;
+ }
+
///
/// Retrieves the list of credentials from the Data Lake Analytics catalog.
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs
index c881f7a903cd..b59632d573d7 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Azure.OData;
@@ -2406,6 +2405,136 @@ public static USqlSchema GetSchema(this ICatalogOperations operations, string ac
}
}
+ ///
+ /// Retrieves the list of access control list (ACL) entries for the database
+ /// from the Data Lake Analytics catalog.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// The name of the database.
+ ///
+ ///
+ /// OData parameters to apply to the operation.
+ ///
+ ///
+ /// OData Select statement. Limits the properties on each entry to just those
+ /// requested, e.g. Categories?$select=CategoryName,Description. Optional.
+ ///
+ ///
+ /// The Boolean value of true or false to request a count of the matching
+ /// resources included with the resources in the response, e.g.
+ /// Categories?$count=true. Optional.
+ ///
+ public static AclList ListAclsByDatabase(this ICatalogOperations operations, string accountName, string databaseName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?))
+ {
+ return operations.ListAclsByDatabaseAsync(accountName, databaseName, odataQuery, select, count).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Retrieves the list of access control list (ACL) entries for the database
+ /// from the Data Lake Analytics catalog.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// The name of the database.
+ ///
+ ///
+ /// OData parameters to apply to the operation.
+ ///
+ ///
+ /// OData Select statement. Limits the properties on each entry to just those
+ /// requested, e.g. Categories?$select=CategoryName,Description. Optional.
+ ///
+ ///
+ /// The Boolean value of true or false to request a count of the matching
+ /// resources included with the resources in the response, e.g.
+ /// Categories?$count=true. Optional.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task ListAclsByDatabaseAsync(this ICatalogOperations operations, string accountName, string databaseName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken))
+ {
+ using (var _result = await operations.ListAclsByDatabaseWithHttpMessagesAsync(accountName, databaseName, odataQuery, select, count, null, cancellationToken).ConfigureAwait(false))
+ {
+ return _result.Body;
+ }
+ }
+
+ ///
+ /// Retrieves the list of access control list (ACL) entries for the Data Lake
+ /// Analytics catalog.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// OData parameters to apply to the operation.
+ ///
+ ///
+ /// OData Select statement. Limits the properties on each entry to just those
+ /// requested, e.g. Categories?$select=CategoryName,Description. Optional.
+ ///
+ ///
+ /// The Boolean value of true or false to request a count of the matching
+ /// resources included with the resources in the response, e.g.
+ /// Categories?$count=true. Optional.
+ ///
+ public static AclList ListAcls(this ICatalogOperations operations, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?))
+ {
+ return operations.ListAclsAsync(accountName, odataQuery, select, count).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Retrieves the list of access control list (ACL) entries for the Data Lake
+ /// Analytics catalog.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// OData parameters to apply to the operation.
+ ///
+ ///
+ /// OData Select statement. Limits the properties on each entry to just those
+ /// requested, e.g. Categories?$select=CategoryName,Description. Optional.
+ ///
+ ///
+ /// The Boolean value of true or false to request a count of the matching
+ /// resources included with the resources in the response, e.g.
+ /// Categories?$count=true. Optional.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task ListAclsAsync(this ICatalogOperations operations, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), CancellationToken cancellationToken = default(CancellationToken))
+ {
+ using (var _result = await operations.ListAclsWithHttpMessagesAsync(accountName, odataQuery, select, count, null, cancellationToken).ConfigureAwait(false))
+ {
+ return _result.Body;
+ }
+ }
+
///
/// Retrieves the specified database from the Data Lake Analytics catalog.
///
@@ -2508,6 +2637,190 @@ public static USqlDatabase GetDatabase(this ICatalogOperations operations, strin
}
}
+ ///
+ /// Grants an access control list (ACL) entry to the database from the Data
+ /// Lake Analytics catalog.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// The name of the database.
+ ///
+ ///
+ /// Parameters supplied to create or update an access control list (ACL) entry
+ /// for a database.
+ ///
+ public static void GrantAclToDatabase(this ICatalogOperations operations, string accountName, string databaseName, AclCreateOrUpdateParameters parameters)
+ {
+ operations.GrantAclToDatabaseAsync(accountName, databaseName, parameters).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Grants an access control list (ACL) entry to the database from the Data
+ /// Lake Analytics catalog.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// The name of the database.
+ ///
+ ///
+ /// Parameters supplied to create or update an access control list (ACL) entry
+ /// for a database.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task GrantAclToDatabaseAsync(this ICatalogOperations operations, string accountName, string databaseName, AclCreateOrUpdateParameters parameters, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ (await operations.GrantAclToDatabaseWithHttpMessagesAsync(accountName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose();
+ }
+
+ ///
+ /// Revokes an access control list (ACL) entry for the database from the Data
+ /// Lake Analytics catalog.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// The name of the database.
+ ///
+ ///
+ /// Parameters supplied to delete an access control list (ACL) entry for a
+ /// database.
+ ///
+ public static void RevokeAclFromDatabase(this ICatalogOperations operations, string accountName, string databaseName, AclDeleteParameters parameters)
+ {
+ operations.RevokeAclFromDatabaseAsync(accountName, databaseName, parameters).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Revokes an access control list (ACL) entry for the database from the Data
+ /// Lake Analytics catalog.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// The name of the database.
+ ///
+ ///
+ /// Parameters supplied to delete an access control list (ACL) entry for a
+ /// database.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task RevokeAclFromDatabaseAsync(this ICatalogOperations operations, string accountName, string databaseName, AclDeleteParameters parameters, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ (await operations.RevokeAclFromDatabaseWithHttpMessagesAsync(accountName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose();
+ }
+
+ ///
+ /// Grants an access control list (ACL) entry to the Data Lake Analytics
+ /// catalog.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// Parameters supplied to create or update an access control list (ACL) entry
+ /// for a Data Lake Analytics catalog.
+ ///
+ public static void GrantAcl(this ICatalogOperations operations, string accountName, AclCreateOrUpdateParameters parameters)
+ {
+ operations.GrantAclAsync(accountName, parameters).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Grants an access control list (ACL) entry to the Data Lake Analytics
+ /// catalog.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// Parameters supplied to create or update an access control list (ACL) entry
+ /// for a Data Lake Analytics catalog.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task GrantAclAsync(this ICatalogOperations operations, string accountName, AclCreateOrUpdateParameters parameters, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ (await operations.GrantAclWithHttpMessagesAsync(accountName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose();
+ }
+
+ ///
+ /// Revokes an access control list (ACL) entry from the Data Lake Analytics
+ /// catalog.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// Parameters supplied to delete an access control list (ACL) entry from a
+ /// Data Lake Analytics catalog.
+ ///
+ public static void RevokeAcl(this ICatalogOperations operations, string accountName, AclDeleteParameters parameters)
+ {
+ operations.RevokeAclAsync(accountName, parameters).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Revokes an access control list (ACL) entry from the Data Lake Analytics
+ /// catalog.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// Parameters supplied to delete an access control list (ACL) entry from a
+ /// Data Lake Analytics catalog.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task RevokeAclAsync(this ICatalogOperations operations, string accountName, AclDeleteParameters parameters, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ (await operations.RevokeAclWithHttpMessagesAsync(accountName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose();
+ }
+
///
/// Retrieves the list of credentials from the Data Lake Analytics catalog.
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperations.cs
index 3f85b675ec59..9bf87828e485 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperations.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperationsExtensions.cs
index 38d416f3802f..8a8516e87a01 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperationsExtensions.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ComputePoliciesOperationsExtensions.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs
index 8caf6176912a..d9a5a8fc5211 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Serialization;
@@ -101,6 +100,16 @@ public partial class DataLakeAnalyticsAccountManagementClient : ServiceClient
public virtual IAccountOperations Account { get; private set; }
+ ///
+ /// Gets the ILocationsOperations.
+ ///
+ public virtual ILocationsOperations Locations { get; private set; }
+
+ ///
+ /// Gets the IOperations.
+ ///
+ public virtual IOperations Operations { get; private set; }
+
///
/// Initializes a new instance of the DataLakeAnalyticsAccountManagementClient class.
///
@@ -307,6 +316,8 @@ private void Initialize()
StorageAccounts = new StorageAccountsOperations(this);
DataLakeStoreAccounts = new DataLakeStoreAccountsOperations(this);
Account = new AccountOperations(this);
+ Locations = new LocationsOperations(this);
+ Operations = new Operations(this);
BaseUri = new System.Uri("https://management.azure.com");
ApiVersion = "2016-11-01";
AcceptLanguage = "en-US";
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs
index 86237949bcaf..69ea1653e8a4 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Serialization;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs
index 2fdba4988f5d..78ea2749db1f 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Serialization;
@@ -53,7 +52,7 @@ public partial class DataLakeAnalyticsJobManagementClient : ServiceClient
- /// Gets the DNS suffix used as the base for all Azure Data Lake Analytics Job
+ /// The DNS suffix used as the base for all Azure Data Lake Analytics Job
/// service requests.
///
public string AdlaJobDnsSuffix { get; set; }
@@ -181,7 +180,7 @@ private void Initialize()
Recurrence = new RecurrenceOperations(this);
Job = new JobOperations(this);
BaseUri = "https://{accountName}.{adlaJobDnsSuffix}";
- ApiVersion = "2016-11-01";
+ ApiVersion = "2017-09-01-preview";
AdlaJobDnsSuffix = "azuredatalakeanalytics.net";
AcceptLanguage = "en-US";
LongRunningOperationRetryTimeout = 30;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs
index b0a4e5decb3c..9d71768c59ce 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Azure.OData;
@@ -725,7 +724,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien
}
// Construct URL
var _baseUrl = Client.BaseUri.AbsoluteUri;
- var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/DataLakeStoreAccounts/").ToString();
+ var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/DataLakeStoreAccounts").ToString();
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{accountName}", System.Uri.EscapeDataString(accountName));
_url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs
index de6d83e0081c..322df672c8e3 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Azure.OData;
@@ -209,7 +208,7 @@ public static DataLakeStoreAccountInfo Get(this IDataLakeStoreAccountsOperations
///
public static IPage ListByAccount(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?))
{
- return ((IDataLakeStoreAccountsOperations)operations).ListByAccountAsync(resourceGroupName, accountName, odataQuery, select, count).GetAwaiter().GetResult();
+ return operations.ListByAccountAsync(resourceGroupName, accountName, odataQuery, select, count).GetAwaiter().GetResult();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs
index 242fbbe588eb..e915ac146d9b 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs
index 295e16a88f56..b848ca5e2029 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IAccountOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IAccountOperations.cs
index 86010f087069..d4e859a10b42 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IAccountOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IAccountOperations.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Azure.OData;
@@ -62,7 +61,7 @@ public partial interface IAccountOperations
///
/// Thrown when a required parameter is null
///
- Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
/// Gets the first page of Data Lake Analytics accounts, if any, within
/// the current subscription. This includes a link to the next page, if
@@ -96,7 +95,7 @@ public partial interface IAccountOperations
///
/// Thrown when a required parameter is null
///
- Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ Task>> ListWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
/// Creates the specified Data Lake Analytics account. This supplies
/// the user with computation services for Data Lake Analytics
@@ -211,6 +210,32 @@ public partial interface IAccountOperations
///
Task> GetWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
+ /// Checks whether the specified account name is available or taken.
+ ///
+ ///
+ /// The Resource location without whitespace.
+ ///
+ ///
+ /// Parameters supplied to check the Data Lake Analytics account name
+ /// availability.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task> CheckNameAvailabilityWithHttpMessagesAsync(string location, CheckNameAvailabilityParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ ///
/// Creates the specified Data Lake Analytics account. This supplies
/// the user with computation services for Data Lake Analytics
/// workloads
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ICatalogOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ICatalogOperations.cs
index a917e8ba4354..526a644c2bfb 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ICatalogOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ICatalogOperations.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Azure.OData;
@@ -1431,6 +1430,83 @@ public partial interface ICatalogOperations
///
Task>> ListViewsByDatabaseWithHttpMessagesAsync(string accountName, string databaseName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
+ /// Retrieves the list of access control list (ACL) entries for the
+ /// database from the Data Lake Analytics catalog.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// The name of the database.
+ ///
+ ///
+ /// OData parameters to apply to the operation.
+ ///
+ ///
+ /// OData Select statement. Limits the properties on each entry to just
+ /// those requested, e.g. Categories?$select=CategoryName,Description.
+ /// Optional.
+ ///
+ ///
+ /// The Boolean value of true or false to request a count of the
+ /// matching resources included with the resources in the response,
+ /// e.g. Categories?$count=true. Optional.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task> ListAclsByDatabaseWithHttpMessagesAsync(string accountName, string databaseName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ ///
+ /// Retrieves the list of access control list (ACL) entries for the
+ /// Data Lake Analytics catalog.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// OData parameters to apply to the operation.
+ ///
+ ///
+ /// OData Select statement. Limits the properties on each entry to just
+ /// those requested, e.g. Categories?$select=CategoryName,Description.
+ /// Optional.
+ ///
+ ///
+ /// The Boolean value of true or false to request a count of the
+ /// matching resources included with the resources in the response,
+ /// e.g. Categories?$count=true. Optional.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task> ListAclsWithHttpMessagesAsync(string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ ///
/// Retrieves the specified database from the Data Lake Analytics
/// catalog.
///
@@ -1495,6 +1571,112 @@ public partial interface ICatalogOperations
///
Task>> ListDatabasesWithHttpMessagesAsync(string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
+ /// Grants an access control list (ACL) entry to the database from the
+ /// Data Lake Analytics catalog.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// The name of the database.
+ ///
+ ///
+ /// Parameters supplied to create or update an access control list
+ /// (ACL) entry for a database.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task GrantAclToDatabaseWithHttpMessagesAsync(string accountName, string databaseName, AclCreateOrUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ ///
+ /// Revokes an access control list (ACL) entry for the database from
+ /// the Data Lake Analytics catalog.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// The name of the database.
+ ///
+ ///
+ /// Parameters supplied to delete an access control list (ACL) entry
+ /// for a database.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task RevokeAclFromDatabaseWithHttpMessagesAsync(string accountName, string databaseName, AclDeleteParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ ///
+ /// Grants an access control list (ACL) entry to the Data Lake
+ /// Analytics catalog.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// Parameters supplied to create or update an access control list
+ /// (ACL) entry for a Data Lake Analytics catalog.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task GrantAclWithHttpMessagesAsync(string accountName, AclCreateOrUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ ///
+ /// Revokes an access control list (ACL) entry from the Data Lake
+ /// Analytics catalog.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account upon which to execute catalog
+ /// operations.
+ ///
+ ///
+ /// Parameters supplied to delete an access control list (ACL) entry
+ /// from a Data Lake Analytics catalog.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task RevokeAclWithHttpMessagesAsync(string accountName, AclDeleteParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ ///
/// Retrieves the list of credentials from the Data Lake Analytics
/// catalog.
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IComputePoliciesOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IComputePoliciesOperations.cs
index 6f1568269716..96c804b6c4d2 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IComputePoliciesOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IComputePoliciesOperations.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs
index 0cf9cfcfb57a..9538c0ad55b9 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
@@ -96,5 +95,15 @@ public partial interface IDataLakeAnalyticsAccountManagementClient : System.IDis
///
IAccountOperations Account { get; }
+ ///
+ /// Gets the ILocationsOperations.
+ ///
+ ILocationsOperations Locations { get; }
+
+ ///
+ /// Gets the IOperations.
+ ///
+ IOperations Operations { get; }
+
}
}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs
index 0bd780b9b79d..7e1bfd940cd4 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs
index 37836050d609..174e8b943e7b 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
@@ -46,8 +45,8 @@ public partial interface IDataLakeAnalyticsJobManagementClient : System.IDisposa
string ApiVersion { get; }
///
- /// Gets the DNS suffix used as the base for all Azure Data Lake
- /// Analytics Job service requests.
+ /// The DNS suffix used as the base for all Azure Data Lake Analytics
+ /// Job service requests.
///
string AdlaJobDnsSuffix { get; set; }
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs
index 8d38a4508b47..0f5ca7223a73 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Azure.OData;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs
index 9bd26d2a77fc..bbfd281f6d69 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IJobOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IJobOperations.cs
index 64f7f7bf3e5c..0a3b8b5e24b4 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IJobOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IJobOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Azure.OData;
@@ -57,7 +56,8 @@ public partial interface IJobOperations
/// The Azure Data Lake Analytics account to execute job operations on.
///
///
- /// JobInfo ID.
+ /// Job identifier. Uniquely identifies the job across all jobs
+ /// submitted to the service.
///
///
/// The headers that will be added to request.
@@ -108,7 +108,8 @@ public partial interface IJobOperations
/// The Azure Data Lake Analytics account to execute job operations on.
///
///
- /// JobInfo ID to cancel.
+ /// Job identifier. Uniquely identifies the job across all jobs
+ /// submitted to the service.
///
///
/// The headers that will be added to request.
@@ -124,13 +125,39 @@ public partial interface IJobOperations
///
Task CancelWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
+ /// Pauses the specified job and places it back in the job queue,
+ /// behind other jobs of equal or higher importance, based on priority.
+ /// (Only for use internally with Scope job type.)
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs
+ /// submitted to the service.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task YieldOperationWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ ///
/// Submits a job to the specified Data Lake Analytics account.
///
///
/// The Azure Data Lake Analytics account to execute job operations on.
///
///
- /// The job ID (a GUID) for the job being submitted.
+ /// Job identifier. Uniquely identifies the job across all jobs
+ /// submitted to the service.
///
///
/// The parameters to submit a job.
@@ -177,6 +204,36 @@ public partial interface IJobOperations
///
Task> GetWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
+ /// Updates the job information for the specified job ID. (Only for use
+ /// internally with Scope job type.)
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs
+ /// submitted to the service.
+ ///
+ ///
+ /// The parameters to update a job.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task> UpdateWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, UpdateJobParameters parameters = default(UpdateJobParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ ///
/// Lists the jobs, if any, associated with the specified Data Lake
/// Analytics account. The response includes a link to the next page of
/// results, if any.
@@ -214,6 +271,84 @@ public partial interface IJobOperations
///
Task>> ListWithHttpMessagesAsync(string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
+ /// Cancels the running job specified by the job ID.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs
+ /// submitted to the service.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task BeginCancelWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ ///
+ /// Pauses the specified job and places it back in the job queue,
+ /// behind other jobs of equal or higher importance, based on priority.
+ /// (Only for use internally with Scope job type.)
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs
+ /// submitted to the service.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task BeginYieldOperationWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ ///
+ /// Updates the job information for the specified job ID. (Only for use
+ /// internally with Scope job type.)
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs
+ /// submitted to the service.
+ ///
+ ///
+ /// The parameters to update a job.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task> BeginUpdateWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, UpdateJobParameters parameters = default(UpdateJobParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ ///
/// Lists the jobs, if any, associated with the specified Data Lake
/// Analytics account. The response includes a link to the next page of
/// results, if any.
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ILocationsOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ILocationsOperations.cs
new file mode 100644
index 000000000000..06042a5e2ec9
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/ILocationsOperations.cs
@@ -0,0 +1,50 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics
+{
+ using Microsoft.Rest;
+ using Microsoft.Rest.Azure;
+ using Models;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ ///
+ /// LocationsOperations operations.
+ ///
+ public partial interface ILocationsOperations
+ {
+ ///
+ /// Gets subscription-level properties and limits for Data Lake
+ /// Analytics specified by Resource location.
+ ///
+ ///
+ /// The Resource location without whitespace.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task> GetCapabilityWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IOperations.cs
new file mode 100644
index 000000000000..2bba0812e57c
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IOperations.cs
@@ -0,0 +1,46 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics
+{
+ using Microsoft.Rest;
+ using Microsoft.Rest.Azure;
+ using Models;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ ///
+ /// Operations operations.
+ ///
+ public partial interface IOperations
+ {
+ ///
+ /// Lists all of the available Data Lake Analytics REST API operations.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IPipelineOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IPipelineOperations.cs
index d034dfa9932f..de45d79a6992 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IPipelineOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IPipelineOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IRecurrenceOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IRecurrenceOperations.cs
index 5a77094f191c..f9d6cc9419d5 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IRecurrenceOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IRecurrenceOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs
index 758c9414b73a..1d55a475502d 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Azure.OData;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperations.cs
index 75f4f126c61c..df3d4a83dd0f 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Azure.OData;
@@ -251,7 +250,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
/// The Azure Data Lake Analytics account to execute job operations on.
///
///
- /// JobInfo ID.
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
///
///
/// Headers that will be added to request.
@@ -649,7 +649,59 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
/// The Azure Data Lake Analytics account to execute job operations on.
///
///
- /// JobInfo ID to cancel.
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public async Task CancelWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ // Send request
+ AzureOperationResponse _response = await BeginCancelWithHttpMessagesAsync(accountName, jobIdentity, customHeaders, cancellationToken).ConfigureAwait(false);
+ return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false);
+ }
+
+ ///
+ /// Pauses the specified job and places it back in the job queue, behind other
+ /// jobs of equal or higher importance, based on priority. (Only for use
+ /// internally with Scope job type.)
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public async Task YieldOperationWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ // Send request
+ AzureOperationResponse _response = await BeginYieldOperationWithHttpMessagesAsync(accountName, jobIdentity, customHeaders, cancellationToken).ConfigureAwait(false);
+ return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false);
+ }
+
+ ///
+ /// Submits a job to the specified Data Lake Analytics account.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ ///
+ /// The parameters to submit a job.
///
///
/// Headers that will be added to request.
@@ -660,6 +712,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
///
/// Thrown when the operation returned an invalid status code
///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
///
/// Thrown when a required parameter is null
///
@@ -669,7 +724,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task CancelWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task> CreateWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, CreateJobParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (accountName == null)
{
@@ -679,6 +734,14 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlaJobDnsSuffix");
}
+ if (parameters == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "parameters");
+ }
+ if (parameters != null)
+ {
+ parameters.Validate();
+ }
if (Client.ApiVersion == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
@@ -692,12 +755,13 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("accountName", accountName);
tracingParameters.Add("jobIdentity", jobIdentity);
+ tracingParameters.Add("parameters", parameters);
tracingParameters.Add("cancellationToken", cancellationToken);
- ServiceClientTracing.Enter(_invocationId, this, "Cancel", tracingParameters);
+ ServiceClientTracing.Enter(_invocationId, this, "Create", tracingParameters);
}
// Construct URL
var _baseUrl = Client.BaseUri;
- var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "Jobs/{jobIdentity}/CancelJob";
+ var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "Jobs/{jobIdentity}";
_url = _url.Replace("{accountName}", accountName);
_url = _url.Replace("{adlaJobDnsSuffix}", Client.AdlaJobDnsSuffix);
_url = _url.Replace("{jobIdentity}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(jobIdentity, Client.SerializationSettings).Trim('"')));
@@ -713,7 +777,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
// Create HTTP transport objects
var _httpRequest = new HttpRequestMessage();
HttpResponseMessage _httpResponse = null;
- _httpRequest.Method = new HttpMethod("POST");
+ _httpRequest.Method = new HttpMethod("PUT");
_httpRequest.RequestUri = new System.Uri(_url);
// Set Headers
if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
@@ -744,6 +808,12 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
// Serialize Request
string _requestContent = null;
+ if(parameters != null)
+ {
+ _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings);
+ _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
+ _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
+ }
// Set Credentials
if (Client.Credentials != null)
{
@@ -799,13 +869,31 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
throw ex;
}
// Create Result
- var _result = new AzureOperationResponse();
+ var _result = new AzureOperationResponse();
_result.Request = _httpRequest;
_result.Response = _httpResponse;
if (_httpResponse.Headers.Contains("x-ms-request-id"))
{
_result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
}
+ // Deserialize Response
+ if ((int)_statusCode == 200)
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ try
+ {
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ }
+ catch (JsonException ex)
+ {
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
+ }
+ }
if (_shouldTrace)
{
ServiceClientTracing.Exit(_invocationId, _result);
@@ -814,16 +902,13 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
}
///
- /// Submits a job to the specified Data Lake Analytics account.
+ /// Gets the job information for the specified job ID.
///
///
/// The Azure Data Lake Analytics account to execute job operations on.
///
///
- /// The job ID (a GUID) for the job being submitted.
- ///
- ///
- /// The parameters to submit a job.
+ /// JobInfo ID.
///
///
/// Headers that will be added to request.
@@ -846,7 +931,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task> CreateWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, CreateJobParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task> GetWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (accountName == null)
{
@@ -856,14 +941,6 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlaJobDnsSuffix");
}
- if (parameters == null)
- {
- throw new ValidationException(ValidationRules.CannotBeNull, "parameters");
- }
- if (parameters != null)
- {
- parameters.Validate();
- }
if (Client.ApiVersion == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
@@ -877,9 +954,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("accountName", accountName);
tracingParameters.Add("jobIdentity", jobIdentity);
- tracingParameters.Add("parameters", parameters);
tracingParameters.Add("cancellationToken", cancellationToken);
- ServiceClientTracing.Enter(_invocationId, this, "Create", tracingParameters);
+ ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters);
}
// Construct URL
var _baseUrl = Client.BaseUri;
@@ -899,7 +975,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
// Create HTTP transport objects
var _httpRequest = new HttpRequestMessage();
HttpResponseMessage _httpResponse = null;
- _httpRequest.Method = new HttpMethod("PUT");
+ _httpRequest.Method = new HttpMethod("GET");
_httpRequest.RequestUri = new System.Uri(_url);
// Set Headers
if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
@@ -930,12 +1006,6 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
// Serialize Request
string _requestContent = null;
- if(parameters != null)
- {
- _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings);
- _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
- _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
- }
// Set Credentials
if (Client.Credentials != null)
{
@@ -1024,13 +1094,50 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
}
///
- /// Gets the job information for the specified job ID.
+ /// Updates the job information for the specified job ID. (Only for use
+ /// internally with Scope job type.)
///
///
/// The Azure Data Lake Analytics account to execute job operations on.
///
///
- /// JobInfo ID.
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ ///
+ /// The parameters to update a job.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public async Task> UpdateWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, UpdateJobParameters parameters = default(UpdateJobParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ // Send Request
+ AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(accountName, jobIdentity, parameters, customHeaders, cancellationToken).ConfigureAwait(false);
+ return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false);
+ }
+
+ ///
+ /// Lists the jobs, if any, associated with the specified Data Lake Analytics
+ /// account. The response includes a link to the next page of results, if any.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// OData parameters to apply to the operation.
+ ///
+ ///
+ /// OData Select statement. Limits the properties on each entry to just those
+ /// requested, e.g. Categories?$select=CategoryName,Description. Optional.
+ ///
+ ///
+ /// The Boolean value of true or false to request a count of the matching
+ /// resources included with the resources in the response, e.g.
+ /// Categories?$count=true. Optional.
///
///
/// Headers that will be added to request.
@@ -1053,7 +1160,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task> GetWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task>> ListWithHttpMessagesAsync(string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (accountName == null)
{
@@ -1074,18 +1181,35 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
{
_invocationId = ServiceClientTracing.NextInvocationId.ToString();
Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("odataQuery", odataQuery);
tracingParameters.Add("accountName", accountName);
- tracingParameters.Add("jobIdentity", jobIdentity);
+ tracingParameters.Add("select", select);
+ tracingParameters.Add("count", count);
tracingParameters.Add("cancellationToken", cancellationToken);
- ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters);
+ ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters);
}
// Construct URL
var _baseUrl = Client.BaseUri;
- var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "Jobs/{jobIdentity}";
+ var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "Jobs";
_url = _url.Replace("{accountName}", accountName);
_url = _url.Replace("{adlaJobDnsSuffix}", Client.AdlaJobDnsSuffix);
- _url = _url.Replace("{jobIdentity}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(jobIdentity, Client.SerializationSettings).Trim('"')));
List _queryParameters = new List();
+ if (odataQuery != null)
+ {
+ var _odataFilter = odataQuery.ToString();
+ if (!string.IsNullOrEmpty(_odataFilter))
+ {
+ _queryParameters.Add(_odataFilter);
+ }
+ }
+ if (select != null)
+ {
+ _queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(select)));
+ }
+ if (count != null)
+ {
+ _queryParameters.Add(string.Format("$count={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(count, Client.SerializationSettings).Trim('"'))));
+ }
if (Client.ApiVersion != null)
{
_queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
@@ -1183,7 +1307,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
throw ex;
}
// Create Result
- var _result = new AzureOperationResponse();
+ var _result = new AzureOperationResponse>();
_result.Request = _httpRequest;
_result.Response = _httpResponse;
if (_httpResponse.Headers.Contains("x-ms-request-id"))
@@ -1196,7 +1320,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
try
{
- _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings);
}
catch (JsonException ex)
{
@@ -1216,23 +1340,14 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
}
///
- /// Lists the jobs, if any, associated with the specified Data Lake Analytics
- /// account. The response includes a link to the next page of results, if any.
+ /// Cancels the running job specified by the job ID.
///
///
/// The Azure Data Lake Analytics account to execute job operations on.
///
- ///
- /// OData parameters to apply to the operation.
- ///
- ///
- /// OData Select statement. Limits the properties on each entry to just those
- /// requested, e.g. Categories?$select=CategoryName,Description. Optional.
- ///
- ///
- /// The Boolean value of true or false to request a count of the matching
- /// resources included with the resources in the response, e.g.
- /// Categories?$count=true. Optional.
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
///
///
/// Headers that will be added to request.
@@ -1243,9 +1358,6 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
///
/// Thrown when the operation returned an invalid status code
///
- ///
- /// Thrown when unable to deserialize the response
- ///
///
/// Thrown when a required parameter is null
///
@@ -1255,7 +1367,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task>> ListWithHttpMessagesAsync(string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task BeginCancelWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (accountName == null)
{
@@ -1276,35 +1388,18 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
{
_invocationId = ServiceClientTracing.NextInvocationId.ToString();
Dictionary tracingParameters = new Dictionary();
- tracingParameters.Add("odataQuery", odataQuery);
tracingParameters.Add("accountName", accountName);
- tracingParameters.Add("select", select);
- tracingParameters.Add("count", count);
+ tracingParameters.Add("jobIdentity", jobIdentity);
tracingParameters.Add("cancellationToken", cancellationToken);
- ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters);
+ ServiceClientTracing.Enter(_invocationId, this, "BeginCancel", tracingParameters);
}
// Construct URL
var _baseUrl = Client.BaseUri;
- var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "Jobs";
+ var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "Jobs/{jobIdentity}/CancelJob";
_url = _url.Replace("{accountName}", accountName);
_url = _url.Replace("{adlaJobDnsSuffix}", Client.AdlaJobDnsSuffix);
+ _url = _url.Replace("{jobIdentity}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(jobIdentity, Client.SerializationSettings).Trim('"')));
List _queryParameters = new List();
- if (odataQuery != null)
- {
- var _odataFilter = odataQuery.ToString();
- if (!string.IsNullOrEmpty(_odataFilter))
- {
- _queryParameters.Add(_odataFilter);
- }
- }
- if (select != null)
- {
- _queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(select)));
- }
- if (count != null)
- {
- _queryParameters.Add(string.Format("$count={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(count, Client.SerializationSettings).Trim('"'))));
- }
if (Client.ApiVersion != null)
{
_queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
@@ -1316,7 +1411,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
// Create HTTP transport objects
var _httpRequest = new HttpRequestMessage();
HttpResponseMessage _httpResponse = null;
- _httpRequest.Method = new HttpMethod("GET");
+ _httpRequest.Method = new HttpMethod("POST");
_httpRequest.RequestUri = new System.Uri(_url);
// Set Headers
if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
@@ -1367,7 +1462,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
HttpStatusCode _statusCode = _httpResponse.StatusCode;
cancellationToken.ThrowIfCancellationRequested();
string _responseContent = null;
- if ((int)_statusCode != 200)
+ if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204)
{
var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
try
@@ -1402,20 +1497,380 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client)
throw ex;
}
// Create Result
- var _result = new AzureOperationResponse>();
+ var _result = new AzureOperationResponse();
_result.Request = _httpRequest;
_result.Response = _httpResponse;
if (_httpResponse.Headers.Contains("x-ms-request-id"))
{
_result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
}
- // Deserialize Response
- if ((int)_statusCode == 200)
+ if (_shouldTrace)
{
- _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
- try
- {
- _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings);
+ ServiceClientTracing.Exit(_invocationId, _result);
+ }
+ return _result;
+ }
+
+ ///
+ /// Pauses the specified job and places it back in the job queue, behind other
+ /// jobs of equal or higher importance, based on priority. (Only for use
+ /// internally with Scope job type.)
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ ///
+ /// Headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// A response object containing the response body and response headers.
+ ///
+ public async Task BeginYieldOperationWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ if (accountName == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "accountName");
+ }
+ if (Client.AdlaJobDnsSuffix == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlaJobDnsSuffix");
+ }
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
+ // Tracing
+ bool _shouldTrace = ServiceClientTracing.IsEnabled;
+ string _invocationId = null;
+ if (_shouldTrace)
+ {
+ _invocationId = ServiceClientTracing.NextInvocationId.ToString();
+ Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("accountName", accountName);
+ tracingParameters.Add("jobIdentity", jobIdentity);
+ tracingParameters.Add("cancellationToken", cancellationToken);
+ ServiceClientTracing.Enter(_invocationId, this, "BeginYieldOperation", tracingParameters);
+ }
+ // Construct URL
+ var _baseUrl = Client.BaseUri;
+ var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "Jobs/{jobIdentity}/YieldJob";
+ _url = _url.Replace("{accountName}", accountName);
+ _url = _url.Replace("{adlaJobDnsSuffix}", Client.AdlaJobDnsSuffix);
+ _url = _url.Replace("{jobIdentity}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(jobIdentity, Client.SerializationSettings).Trim('"')));
+ List _queryParameters = new List();
+ if (Client.ApiVersion != null)
+ {
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
+ }
+ if (_queryParameters.Count > 0)
+ {
+ _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
+ }
+ // Create HTTP transport objects
+ var _httpRequest = new HttpRequestMessage();
+ HttpResponseMessage _httpResponse = null;
+ _httpRequest.Method = new HttpMethod("POST");
+ _httpRequest.RequestUri = new System.Uri(_url);
+ // Set Headers
+ if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
+ {
+ _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
+ }
+ if (Client.AcceptLanguage != null)
+ {
+ if (_httpRequest.Headers.Contains("accept-language"))
+ {
+ _httpRequest.Headers.Remove("accept-language");
+ }
+ _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
+ }
+
+
+ if (customHeaders != null)
+ {
+ foreach(var _header in customHeaders)
+ {
+ if (_httpRequest.Headers.Contains(_header.Key))
+ {
+ _httpRequest.Headers.Remove(_header.Key);
+ }
+ _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
+ }
+ }
+
+ // Serialize Request
+ string _requestContent = null;
+ // Set Credentials
+ if (Client.Credentials != null)
+ {
+ cancellationToken.ThrowIfCancellationRequested();
+ await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ }
+ // Send Request
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
+ }
+ cancellationToken.ThrowIfCancellationRequested();
+ _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
+ }
+ HttpStatusCode _statusCode = _httpResponse.StatusCode;
+ cancellationToken.ThrowIfCancellationRequested();
+ string _responseContent = null;
+ if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204)
+ {
+ var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
+ try
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ if (_errorBody != null)
+ {
+ ex = new CloudException(_errorBody.Message);
+ ex.Body = _errorBody;
+ }
+ }
+ catch (JsonException)
+ {
+ // Ignore the exception
+ }
+ ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
+ ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Error(_invocationId, ex);
+ }
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw ex;
+ }
+ // Create Result
+ var _result = new AzureOperationResponse();
+ _result.Request = _httpRequest;
+ _result.Response = _httpResponse;
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Exit(_invocationId, _result);
+ }
+ return _result;
+ }
+
+ ///
+ /// Updates the job information for the specified job ID. (Only for use
+ /// internally with Scope job type.)
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ ///
+ /// The parameters to update a job.
+ ///
+ ///
+ /// Headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// A response object containing the response body and response headers.
+ ///
+ public async Task> BeginUpdateWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, UpdateJobParameters parameters = default(UpdateJobParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ if (accountName == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "accountName");
+ }
+ if (Client.AdlaJobDnsSuffix == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.AdlaJobDnsSuffix");
+ }
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
+ // Tracing
+ bool _shouldTrace = ServiceClientTracing.IsEnabled;
+ string _invocationId = null;
+ if (_shouldTrace)
+ {
+ _invocationId = ServiceClientTracing.NextInvocationId.ToString();
+ Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("accountName", accountName);
+ tracingParameters.Add("jobIdentity", jobIdentity);
+ tracingParameters.Add("parameters", parameters);
+ tracingParameters.Add("cancellationToken", cancellationToken);
+ ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters);
+ }
+ // Construct URL
+ var _baseUrl = Client.BaseUri;
+ var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "Jobs/{jobIdentity}";
+ _url = _url.Replace("{accountName}", accountName);
+ _url = _url.Replace("{adlaJobDnsSuffix}", Client.AdlaJobDnsSuffix);
+ _url = _url.Replace("{jobIdentity}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(jobIdentity, Client.SerializationSettings).Trim('"')));
+ List _queryParameters = new List();
+ if (Client.ApiVersion != null)
+ {
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
+ }
+ if (_queryParameters.Count > 0)
+ {
+ _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
+ }
+ // Create HTTP transport objects
+ var _httpRequest = new HttpRequestMessage();
+ HttpResponseMessage _httpResponse = null;
+ _httpRequest.Method = new HttpMethod("PATCH");
+ _httpRequest.RequestUri = new System.Uri(_url);
+ // Set Headers
+ if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
+ {
+ _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
+ }
+ if (Client.AcceptLanguage != null)
+ {
+ if (_httpRequest.Headers.Contains("accept-language"))
+ {
+ _httpRequest.Headers.Remove("accept-language");
+ }
+ _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
+ }
+
+
+ if (customHeaders != null)
+ {
+ foreach(var _header in customHeaders)
+ {
+ if (_httpRequest.Headers.Contains(_header.Key))
+ {
+ _httpRequest.Headers.Remove(_header.Key);
+ }
+ _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
+ }
+ }
+
+ // Serialize Request
+ string _requestContent = null;
+ if(parameters != null)
+ {
+ _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings);
+ _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8);
+ _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
+ }
+ // Set Credentials
+ if (Client.Credentials != null)
+ {
+ cancellationToken.ThrowIfCancellationRequested();
+ await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ }
+ // Send Request
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
+ }
+ cancellationToken.ThrowIfCancellationRequested();
+ _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
+ }
+ HttpStatusCode _statusCode = _httpResponse.StatusCode;
+ cancellationToken.ThrowIfCancellationRequested();
+ string _responseContent = null;
+ if ((int)_statusCode != 200 && (int)_statusCode != 201 && (int)_statusCode != 202)
+ {
+ var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
+ try
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ if (_errorBody != null)
+ {
+ ex = new CloudException(_errorBody.Message);
+ ex.Body = _errorBody;
+ }
+ }
+ catch (JsonException)
+ {
+ // Ignore the exception
+ }
+ ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
+ ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Error(_invocationId, ex);
+ }
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw ex;
+ }
+ // Create Result
+ var _result = new AzureOperationResponse();
+ _result.Request = _httpRequest;
+ _result.Response = _httpResponse;
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ // Deserialize Response
+ if ((int)_statusCode == 200)
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ try
+ {
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
}
catch (JsonException ex)
{
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs
index 17666923c315..c581a4f50af0 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Azure.OData;
@@ -73,7 +72,8 @@ public static JobStatistics GetStatistics(this IJobOperations operations, string
/// The Azure Data Lake Analytics account to execute job operations on.
///
///
- /// JobInfo ID.
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
///
public static JobDataPath GetDebugDataPath(this IJobOperations operations, string accountName, System.Guid jobIdentity)
{
@@ -90,7 +90,8 @@ public static JobDataPath GetDebugDataPath(this IJobOperations operations, strin
/// The Azure Data Lake Analytics account to execute job operations on.
///
///
- /// JobInfo ID.
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
///
///
/// The cancellation token.
@@ -155,7 +156,8 @@ public static JobInformation Build(this IJobOperations operations, string accoun
/// The Azure Data Lake Analytics account to execute job operations on.
///
///
- /// JobInfo ID to cancel.
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
///
public static void Cancel(this IJobOperations operations, string accountName, System.Guid jobIdentity)
{
@@ -172,7 +174,8 @@ public static void Cancel(this IJobOperations operations, string accountName, Sy
/// The Azure Data Lake Analytics account to execute job operations on.
///
///
- /// JobInfo ID to cancel.
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
///
///
/// The cancellation token.
@@ -182,6 +185,49 @@ public static void Cancel(this IJobOperations operations, string accountName, Sy
(await operations.CancelWithHttpMessagesAsync(accountName, jobIdentity, null, cancellationToken).ConfigureAwait(false)).Dispose();
}
+ ///
+ /// Pauses the specified job and places it back in the job queue, behind other
+ /// jobs of equal or higher importance, based on priority. (Only for use
+ /// internally with Scope job type.)
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ public static void YieldOperation(this IJobOperations operations, string accountName, System.Guid jobIdentity)
+ {
+ operations.YieldOperationAsync(accountName, jobIdentity).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Pauses the specified job and places it back in the job queue, behind other
+ /// jobs of equal or higher importance, based on priority. (Only for use
+ /// internally with Scope job type.)
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task YieldOperationAsync(this IJobOperations operations, string accountName, System.Guid jobIdentity, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ (await operations.YieldOperationWithHttpMessagesAsync(accountName, jobIdentity, null, cancellationToken).ConfigureAwait(false)).Dispose();
+ }
+
///
/// Submits a job to the specified Data Lake Analytics account.
///
@@ -192,7 +238,8 @@ public static void Cancel(this IJobOperations operations, string accountName, Sy
/// The Azure Data Lake Analytics account to execute job operations on.
///
///
- /// The job ID (a GUID) for the job being submitted.
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
///
///
/// The parameters to submit a job.
@@ -212,7 +259,8 @@ public static JobInformation Create(this IJobOperations operations, string accou
/// The Azure Data Lake Analytics account to execute job operations on.
///
///
- /// The job ID (a GUID) for the job being submitted.
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
///
///
/// The parameters to submit a job.
@@ -268,6 +316,56 @@ public static JobInformation Get(this IJobOperations operations, string accountN
}
}
+ ///
+ /// Updates the job information for the specified job ID. (Only for use
+ /// internally with Scope job type.)
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ ///
+ /// The parameters to update a job.
+ ///
+ public static JobInformation Update(this IJobOperations operations, string accountName, System.Guid jobIdentity, UpdateJobParameters parameters = default(UpdateJobParameters))
+ {
+ return operations.UpdateAsync(accountName, jobIdentity, parameters).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Updates the job information for the specified job ID. (Only for use
+ /// internally with Scope job type.)
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ ///
+ /// The parameters to update a job.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task UpdateAsync(this IJobOperations operations, string accountName, System.Guid jobIdentity, UpdateJobParameters parameters = default(UpdateJobParameters), CancellationToken cancellationToken = default(CancellationToken))
+ {
+ using (var _result = await operations.UpdateWithHttpMessagesAsync(accountName, jobIdentity, parameters, null, cancellationToken).ConfigureAwait(false))
+ {
+ return _result.Body;
+ }
+ }
+
///
/// Lists the jobs, if any, associated with the specified Data Lake Analytics
/// account. The response includes a link to the next page of results, if any.
@@ -292,7 +390,7 @@ public static JobInformation Get(this IJobOperations operations, string accountN
///
public static IPage List(this IJobOperations operations, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?))
{
- return ((IJobOperations)operations).ListAsync(accountName, odataQuery, select, count).GetAwaiter().GetResult();
+ return operations.ListAsync(accountName, odataQuery, select, count).GetAwaiter().GetResult();
}
///
@@ -328,6 +426,138 @@ public static JobInformation Get(this IJobOperations operations, string accountN
}
}
+ ///
+ /// Cancels the running job specified by the job ID.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ public static void BeginCancel(this IJobOperations operations, string accountName, System.Guid jobIdentity)
+ {
+ operations.BeginCancelAsync(accountName, jobIdentity).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Cancels the running job specified by the job ID.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task BeginCancelAsync(this IJobOperations operations, string accountName, System.Guid jobIdentity, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ (await operations.BeginCancelWithHttpMessagesAsync(accountName, jobIdentity, null, cancellationToken).ConfigureAwait(false)).Dispose();
+ }
+
+ ///
+ /// Pauses the specified job and places it back in the job queue, behind other
+ /// jobs of equal or higher importance, based on priority. (Only for use
+ /// internally with Scope job type.)
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ public static void BeginYieldOperation(this IJobOperations operations, string accountName, System.Guid jobIdentity)
+ {
+ operations.BeginYieldOperationAsync(accountName, jobIdentity).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Pauses the specified job and places it back in the job queue, behind other
+ /// jobs of equal or higher importance, based on priority. (Only for use
+ /// internally with Scope job type.)
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task BeginYieldOperationAsync(this IJobOperations operations, string accountName, System.Guid jobIdentity, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ (await operations.BeginYieldOperationWithHttpMessagesAsync(accountName, jobIdentity, null, cancellationToken).ConfigureAwait(false)).Dispose();
+ }
+
+ ///
+ /// Updates the job information for the specified job ID. (Only for use
+ /// internally with Scope job type.)
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ ///
+ /// The parameters to update a job.
+ ///
+ public static JobInformation BeginUpdate(this IJobOperations operations, string accountName, System.Guid jobIdentity, UpdateJobParameters parameters = default(UpdateJobParameters))
+ {
+ return operations.BeginUpdateAsync(accountName, jobIdentity, parameters).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Updates the job information for the specified job ID. (Only for use
+ /// internally with Scope job type.)
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Azure Data Lake Analytics account to execute job operations on.
+ ///
+ ///
+ /// Job identifier. Uniquely identifies the job across all jobs submitted to
+ /// the service.
+ ///
+ ///
+ /// The parameters to update a job.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task BeginUpdateAsync(this IJobOperations operations, string accountName, System.Guid jobIdentity, UpdateJobParameters parameters = default(UpdateJobParameters), CancellationToken cancellationToken = default(CancellationToken))
+ {
+ using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(accountName, jobIdentity, parameters, null, cancellationToken).ConfigureAwait(false))
+ {
+ return _result.Body;
+ }
+ }
+
///
/// Lists the jobs, if any, associated with the specified Data Lake Analytics
/// account. The response includes a link to the next page of results, if any.
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/LocationsOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/LocationsOperations.cs
new file mode 100644
index 000000000000..399928c347f2
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/LocationsOperations.cs
@@ -0,0 +1,242 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics
+{
+ using Microsoft.Rest;
+ using Microsoft.Rest.Azure;
+ using Models;
+ using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Linq;
+ using System.Net;
+ using System.Net.Http;
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ ///
+ /// LocationsOperations operations.
+ ///
+ internal partial class LocationsOperations : IServiceOperations, ILocationsOperations
+ {
+ ///
+ /// Initializes a new instance of the LocationsOperations class.
+ ///
+ ///
+ /// Reference to the service client.
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ internal LocationsOperations(DataLakeAnalyticsAccountManagementClient client)
+ {
+ if (client == null)
+ {
+ throw new System.ArgumentNullException("client");
+ }
+ Client = client;
+ }
+
+ ///
+ /// Gets a reference to the DataLakeAnalyticsAccountManagementClient
+ ///
+ public DataLakeAnalyticsAccountManagementClient Client { get; private set; }
+
+ ///
+ /// Gets subscription-level properties and limits for Data Lake Analytics
+ /// specified by Resource location.
+ ///
+ ///
+ /// The Resource location without whitespace.
+ ///
+ ///
+ /// Headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// A response object containing the response body and response headers.
+ ///
+ public async Task> GetCapabilityWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ if (location == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "location");
+ }
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
+ if (Client.SubscriptionId == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId");
+ }
+ // Tracing
+ bool _shouldTrace = ServiceClientTracing.IsEnabled;
+ string _invocationId = null;
+ if (_shouldTrace)
+ {
+ _invocationId = ServiceClientTracing.NextInvocationId.ToString();
+ Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("location", location);
+ tracingParameters.Add("cancellationToken", cancellationToken);
+ ServiceClientTracing.Enter(_invocationId, this, "GetCapability", tracingParameters);
+ }
+ // Construct URL
+ var _baseUrl = Client.BaseUri.AbsoluteUri;
+ var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.DataLakeAnalytics/locations/{location}/capability").ToString();
+ _url = _url.Replace("{location}", System.Uri.EscapeDataString(location));
+ _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
+ List _queryParameters = new List();
+ if (Client.ApiVersion != null)
+ {
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
+ }
+ if (_queryParameters.Count > 0)
+ {
+ _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
+ }
+ // Create HTTP transport objects
+ var _httpRequest = new HttpRequestMessage();
+ HttpResponseMessage _httpResponse = null;
+ _httpRequest.Method = new HttpMethod("GET");
+ _httpRequest.RequestUri = new System.Uri(_url);
+ // Set Headers
+ if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
+ {
+ _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
+ }
+ if (Client.AcceptLanguage != null)
+ {
+ if (_httpRequest.Headers.Contains("accept-language"))
+ {
+ _httpRequest.Headers.Remove("accept-language");
+ }
+ _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
+ }
+
+
+ if (customHeaders != null)
+ {
+ foreach(var _header in customHeaders)
+ {
+ if (_httpRequest.Headers.Contains(_header.Key))
+ {
+ _httpRequest.Headers.Remove(_header.Key);
+ }
+ _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
+ }
+ }
+
+ // Serialize Request
+ string _requestContent = null;
+ // Set Credentials
+ if (Client.Credentials != null)
+ {
+ cancellationToken.ThrowIfCancellationRequested();
+ await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ }
+ // Send Request
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
+ }
+ cancellationToken.ThrowIfCancellationRequested();
+ _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
+ }
+ HttpStatusCode _statusCode = _httpResponse.StatusCode;
+ cancellationToken.ThrowIfCancellationRequested();
+ string _responseContent = null;
+ if ((int)_statusCode != 200 && (int)_statusCode != 404)
+ {
+ var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
+ try
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ if (_errorBody != null)
+ {
+ ex = new CloudException(_errorBody.Message);
+ ex.Body = _errorBody;
+ }
+ }
+ catch (JsonException)
+ {
+ // Ignore the exception
+ }
+ ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
+ ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Error(_invocationId, ex);
+ }
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw ex;
+ }
+ // Create Result
+ var _result = new AzureOperationResponse();
+ _result.Request = _httpRequest;
+ _result.Response = _httpResponse;
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ // Deserialize Response
+ if ((int)_statusCode == 200)
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ try
+ {
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ }
+ catch (JsonException ex)
+ {
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
+ }
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Exit(_invocationId, _result);
+ }
+ return _result;
+ }
+
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/LocationsOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/LocationsOperationsExtensions.cs
new file mode 100644
index 000000000000..6662a695fdd1
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/LocationsOperationsExtensions.cs
@@ -0,0 +1,61 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics
+{
+ using Microsoft.Rest;
+ using Microsoft.Rest.Azure;
+ using Models;
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ ///
+ /// Extension methods for LocationsOperations.
+ ///
+ public static partial class LocationsOperationsExtensions
+ {
+ ///
+ /// Gets subscription-level properties and limits for Data Lake Analytics
+ /// specified by Resource location.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Resource location without whitespace.
+ ///
+ public static CapabilityInformation GetCapability(this ILocationsOperations operations, string location)
+ {
+ return operations.GetCapabilityAsync(location).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Gets subscription-level properties and limits for Data Lake Analytics
+ /// specified by Resource location.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The Resource location without whitespace.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task GetCapabilityAsync(this ILocationsOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ using (var _result = await operations.GetCapabilityWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false))
+ {
+ return _result.Body;
+ }
+ }
+
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AADObjectType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AADObjectType.cs
index 0c43096da057..e7c4bdf7ba2d 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AADObjectType.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AADObjectType.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
///
/// Defines values for AADObjectType.
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Acl.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Acl.cs
new file mode 100644
index 000000000000..813fbe52847f
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Acl.cs
@@ -0,0 +1,79 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// A Data Lake Analytics catalog access control list (ACL) entry.
+ ///
+ public partial class Acl
+ {
+ ///
+ /// Initializes a new instance of the Acl class.
+ ///
+ public Acl()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the Acl class.
+ ///
+ /// the access control list (ACL) entry type.
+ /// UserObj and GroupObj denote the owning user and group,
+ /// respectively. Possible values include: 'UserObj', 'GroupObj',
+ /// 'Other', 'User', 'Group'
+ /// the Azure AD object ID of the user or
+ /// group being specified in the access control list (ACL)
+ /// entry.
+ /// the permission type of the access control
+ /// list (ACL) entry. Possible values include: 'None', 'Use', 'Create',
+ /// 'Drop', 'Alter', 'Write', 'All'
+ public Acl(string aceType = default(string), System.Guid? principalId = default(System.Guid?), string permission = default(string))
+ {
+ AceType = aceType;
+ PrincipalId = principalId;
+ Permission = permission;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets the access control list (ACL) entry type. UserObj and GroupObj
+ /// denote the owning user and group, respectively. Possible values
+ /// include: 'UserObj', 'GroupObj', 'Other', 'User', 'Group'
+ ///
+ [JsonProperty(PropertyName = "aceType")]
+ public string AceType { get; private set; }
+
+ ///
+ /// Gets the Azure AD object ID of the user or group being specified in
+ /// the access control list (ACL) entry.
+ ///
+ [JsonProperty(PropertyName = "principalId")]
+ public System.Guid? PrincipalId { get; private set; }
+
+ ///
+ /// Gets the permission type of the access control list (ACL) entry.
+ /// Possible values include: 'None', 'Use', 'Create', 'Drop', 'Alter',
+ /// 'Write', 'All'
+ ///
+ [JsonProperty(PropertyName = "permission")]
+ public string Permission { get; private set; }
+
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AclCreateOrUpdateParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AclCreateOrUpdateParameters.cs
new file mode 100644
index 000000000000..7badbc293e0d
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AclCreateOrUpdateParameters.cs
@@ -0,0 +1,100 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Microsoft.Rest;
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// The parameters used to create or update an access control list (ACL)
+ /// entry.
+ ///
+ public partial class AclCreateOrUpdateParameters
+ {
+ ///
+ /// Initializes a new instance of the AclCreateOrUpdateParameters
+ /// class.
+ ///
+ public AclCreateOrUpdateParameters()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the AclCreateOrUpdateParameters
+ /// class.
+ ///
+ /// the access control list (ACL) entry type.
+ /// UserObj and GroupObj denote the owning user and group,
+ /// respectively. Possible values include: 'UserObj', 'GroupObj',
+ /// 'Other', 'User', 'Group'
+ /// the Azure AD object ID of the user or
+ /// group being specified in the access control list (ACL)
+ /// entry.
+ /// the permission type of the access control
+ /// list (ACL) entry. Possible values include: 'None', 'Use', 'Create',
+ /// 'Drop', 'Alter', 'Write', 'All'
+ public AclCreateOrUpdateParameters(string aceType, System.Guid principalId, string permission)
+ {
+ AceType = aceType;
+ PrincipalId = principalId;
+ Permission = permission;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets the access control list (ACL) entry type. UserObj and
+ /// GroupObj denote the owning user and group, respectively. Possible
+ /// values include: 'UserObj', 'GroupObj', 'Other', 'User', 'Group'
+ ///
+ [JsonProperty(PropertyName = "aceType")]
+ public string AceType { get; set; }
+
+ ///
+ /// Gets or sets the Azure AD object ID of the user or group being
+ /// specified in the access control list (ACL) entry.
+ ///
+ [JsonProperty(PropertyName = "principalId")]
+ public System.Guid PrincipalId { get; set; }
+
+ ///
+ /// Gets or sets the permission type of the access control list (ACL)
+ /// entry. Possible values include: 'None', 'Use', 'Create', 'Drop',
+ /// 'Alter', 'Write', 'All'
+ ///
+ [JsonProperty(PropertyName = "permission")]
+ public string Permission { get; set; }
+
+ ///
+ /// Validate the object.
+ ///
+ ///
+ /// Thrown if validation fails
+ ///
+ public virtual void Validate()
+ {
+ if (AceType == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "AceType");
+ }
+ if (Permission == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "Permission");
+ }
+ }
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AclDeleteParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AclDeleteParameters.cs
new file mode 100644
index 000000000000..57ef640ee37f
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AclDeleteParameters.cs
@@ -0,0 +1,81 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Microsoft.Rest;
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// The parameters used to delete an access control list (ACL) entry.
+ ///
+ public partial class AclDeleteParameters
+ {
+ ///
+ /// Initializes a new instance of the AclDeleteParameters class.
+ ///
+ public AclDeleteParameters()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the AclDeleteParameters class.
+ ///
+ /// the access control list (ACL) entry type.
+ /// UserObj and GroupObj denote the owning user and group,
+ /// respectively. Possible values include: 'UserObj', 'GroupObj',
+ /// 'Other', 'User', 'Group'
+ /// the Azure AD object ID of the user or
+ /// group being specified in the access control list (ACL)
+ /// entry.
+ public AclDeleteParameters(string aceType, System.Guid principalId)
+ {
+ AceType = aceType;
+ PrincipalId = principalId;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets the access control list (ACL) entry type. UserObj and
+ /// GroupObj denote the owning user and group, respectively. Possible
+ /// values include: 'UserObj', 'GroupObj', 'Other', 'User', 'Group'
+ ///
+ [JsonProperty(PropertyName = "aceType")]
+ public string AceType { get; set; }
+
+ ///
+ /// Gets or sets the Azure AD object ID of the user or group being
+ /// specified in the access control list (ACL) entry.
+ ///
+ [JsonProperty(PropertyName = "principalId")]
+ public System.Guid PrincipalId { get; set; }
+
+ ///
+ /// Validate the object.
+ ///
+ ///
+ /// Thrown if validation fails
+ ///
+ public virtual void Validate()
+ {
+ if (AceType == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "AceType");
+ }
+ }
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AclList.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AclList.cs
new file mode 100644
index 000000000000..82052dccc446
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AclList.cs
@@ -0,0 +1,53 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Linq;
+
+ ///
+ /// A Data Lake Analytics catalog access control list (ACL).
+ ///
+ public partial class AclList
+ {
+ ///
+ /// Initializes a new instance of the AclList class.
+ ///
+ public AclList()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the AclList class.
+ ///
+ /// the access control list (ACL).
+ public AclList(IList value = default(IList))
+ {
+ Value = value;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets the access control list (ACL).
+ ///
+ [JsonProperty(PropertyName = "value")]
+ public IList Value { get; private set; }
+
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AclType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AclType.cs
new file mode 100644
index 000000000000..e902e429d340
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AclType.cs
@@ -0,0 +1,25 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+
+ ///
+ /// Defines values for AclType.
+ ///
+ public static class AclType
+ {
+ public const string UserObj = "UserObj";
+ public const string GroupObj = "GroupObj";
+ public const string Other = "Other";
+ public const string User = "User";
+ public const string Group = "Group";
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs
index 86b6bb26c11f..3f47609ca1ca 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -28,7 +26,7 @@ public partial class AddDataLakeStoreParameters
///
public AddDataLakeStoreParameters()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs
index 060d256a7221..2e0a2e418115 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +28,7 @@ public partial class AddStorageAccountParameters
///
public AddStorageAccountParameters()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/BaseJobParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/BaseJobParameters.cs
index 2306f5f848a1..e4936126a976 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/BaseJobParameters.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/BaseJobParameters.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -26,14 +24,15 @@ public partial class BaseJobParameters
///
public BaseJobParameters()
{
- CustomInit();
+ CustomInit();
}
///
/// Initializes a new instance of the BaseJobParameters class.
///
- /// the job type of the current job (Hive or USql).
- /// Possible values include: 'USql', 'Hive'
+ /// the job type of the current job (Hive, USql, or
+ /// Scope (for internal use only)). Possible values include: 'USql',
+ /// 'Hive', 'Scope'
/// the job specific properties.
public BaseJobParameters(JobType type, CreateJobProperties properties)
{
@@ -48,8 +47,9 @@ public BaseJobParameters(JobType type, CreateJobProperties properties)
partial void CustomInit();
///
- /// Gets or sets the job type of the current job (Hive or USql).
- /// Possible values include: 'USql', 'Hive'
+ /// Gets or sets the job type of the current job (Hive, USql, or Scope
+ /// (for internal use only)). Possible values include: 'USql', 'Hive',
+ /// 'Scope'
///
[JsonProperty(PropertyName = "type")]
public JobType Type { get; set; }
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/BuildJobParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/BuildJobParameters.cs
index e0e15430ec22..50abd476e8ec 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/BuildJobParameters.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/BuildJobParameters.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,14 +23,15 @@ public partial class BuildJobParameters : BaseJobParameters
///
public BuildJobParameters()
{
- CustomInit();
+ CustomInit();
}
///
/// Initializes a new instance of the BuildJobParameters class.
///
- /// the job type of the current job (Hive or USql).
- /// Possible values include: 'USql', 'Hive'
+ /// the job type of the current job (Hive, USql, or
+ /// Scope (for internal use only)). Possible values include: 'USql',
+ /// 'Hive', 'Scope'
/// the job specific properties.
/// the friendly name of the job to build.
public BuildJobParameters(JobType type, CreateJobProperties properties, string name = default(string))
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CapabilityInformation.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CapabilityInformation.cs
new file mode 100644
index 000000000000..0b94b3fefa10
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CapabilityInformation.cs
@@ -0,0 +1,93 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// Subscription-level properties and limits for Data Lake Analytics
+ ///
+ public partial class CapabilityInformation
+ {
+ ///
+ /// Initializes a new instance of the CapabilityInformation class.
+ ///
+ public CapabilityInformation()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the CapabilityInformation class.
+ ///
+ /// the subscription credentials that
+ /// uniquely identifies the subscription.
+ /// the subscription state. Possible values
+ /// include: 'Registered', 'Suspended', 'Deleted', 'Unregistered',
+ /// 'Warned'
+ /// the maximum supported number of
+ /// accounts under this subscription.
+ /// the current number of accounts under
+ /// this subscription.
+ /// the Boolean value of true or false to
+ /// indicate the maintenance state.
+ public CapabilityInformation(System.Guid? subscriptionId = default(System.Guid?), string state = default(string), int? maxAccountCount = default(int?), int? accountCount = default(int?), bool? migrationState = default(bool?))
+ {
+ SubscriptionId = subscriptionId;
+ State = state;
+ MaxAccountCount = maxAccountCount;
+ AccountCount = accountCount;
+ MigrationState = migrationState;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets the subscription credentials that uniquely identifies the
+ /// subscription.
+ ///
+ [JsonProperty(PropertyName = "subscriptionId")]
+ public System.Guid? SubscriptionId { get; private set; }
+
+ ///
+ /// Gets the subscription state. Possible values include: 'Registered',
+ /// 'Suspended', 'Deleted', 'Unregistered', 'Warned'
+ ///
+ [JsonProperty(PropertyName = "state")]
+ public string State { get; private set; }
+
+ ///
+ /// Gets the maximum supported number of accounts under this
+ /// subscription.
+ ///
+ [JsonProperty(PropertyName = "maxAccountCount")]
+ public int? MaxAccountCount { get; private set; }
+
+ ///
+ /// Gets the current number of accounts under this subscription.
+ ///
+ [JsonProperty(PropertyName = "accountCount")]
+ public int? AccountCount { get; private set; }
+
+ ///
+ /// Gets the Boolean value of true or false to indicate the maintenance
+ /// state.
+ ///
+ [JsonProperty(PropertyName = "migrationState")]
+ public bool? MigrationState { get; private set; }
+
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItem.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItem.cs
index e3c73cce9364..08f043b304df 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItem.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItem.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class CatalogItem
///
public CatalogItem()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs
index fe00a2c8d0f4..7e9a131d67c4 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class CatalogItemList
///
public CatalogItemList()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CheckNameAvailabilityParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CheckNameAvailabilityParameters.cs
new file mode 100644
index 000000000000..ff212cf2e00c
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CheckNameAvailabilityParameters.cs
@@ -0,0 +1,83 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Microsoft.Rest;
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// Data Lake Analytics account name availability check parameters
+ ///
+ public partial class CheckNameAvailabilityParameters
+ {
+ ///
+ /// Initializes a new instance of the CheckNameAvailabilityParameters
+ /// class.
+ ///
+ public CheckNameAvailabilityParameters()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the CheckNameAvailabilityParameters
+ /// class.
+ ///
+ /// the Data Lake Analytics name to check
+ /// availability for.
+ public CheckNameAvailabilityParameters(string name)
+ {
+ Name = name;
+ CustomInit();
+ }
+ ///
+ /// Static constructor for CheckNameAvailabilityParameters class.
+ ///
+ static CheckNameAvailabilityParameters()
+ {
+ Type = "Microsoft.DataLakeAnalytics/accounts";
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets the Data Lake Analytics name to check availability
+ /// for.
+ ///
+ [JsonProperty(PropertyName = "name")]
+ public string Name { get; set; }
+
+ ///
+ /// the Resource type. Note: This should not be set by the user, as the
+ /// constant value is Microsoft.DataLakeAnalytics/accounts
+ ///
+ [JsonProperty(PropertyName = "type")]
+ public static string Type { get; private set; }
+
+ ///
+ /// Validate the object.
+ ///
+ ///
+ /// Thrown if validation fails
+ ///
+ public virtual void Validate()
+ {
+ if (Name == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "Name");
+ }
+ }
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CompileMode.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CompileMode.cs
index 7a560ff7585d..b18dbd1237f2 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CompileMode.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CompileMode.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime;
@@ -32,8 +30,10 @@ public enum CompileMode
}
internal static class CompileModeEnumExtension
{
- internal static string ToSerializedValue(this CompileMode? value) =>
- value == null ? null : ((CompileMode)value).ToSerializedValue();
+ internal static string ToSerializedValue(this CompileMode? value)
+ {
+ return value == null ? null : ((CompileMode)value).ToSerializedValue();
+ }
internal static string ToSerializedValue(this CompileMode value)
{
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicy.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicy.cs
index b40a0bbbb0dd..aa3d3122ed26 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicy.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicy.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -28,7 +26,7 @@ public partial class ComputePolicy
///
public ComputePolicy()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyAccountCreateParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyAccountCreateParameters.cs
index 21c2fd65650e..6dbb7ec3126a 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyAccountCreateParameters.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyAccountCreateParameters.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -29,7 +27,7 @@ public partial class ComputePolicyAccountCreateParameters
///
public ComputePolicyAccountCreateParameters()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyCreateOrUpdateParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyCreateOrUpdateParameters.cs
index aaf374bc8912..bdc3284d2d6b 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyCreateOrUpdateParameters.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ComputePolicyCreateOrUpdateParameters.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -29,7 +27,7 @@ public partial class ComputePolicyCreateOrUpdateParameters
///
public ComputePolicyCreateOrUpdateParameters()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateJobParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateJobParameters.cs
index 91bcd0eeda04..80263cbe26dc 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateJobParameters.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateJobParameters.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Collections;
@@ -28,14 +26,15 @@ public partial class CreateJobParameters : BaseJobParameters
///
public CreateJobParameters()
{
- CustomInit();
+ CustomInit();
}
///
/// Initializes a new instance of the CreateJobParameters class.
///
- /// the job type of the current job (Hive or USql).
- /// Possible values include: 'USql', 'Hive'
+ /// the job type of the current job (Hive, USql, or
+ /// Scope (for internal use only)). Possible values include: 'USql',
+ /// 'Hive', 'Scope'
/// the job specific properties.
/// the friendly name of the job to submit.
/// the degree of parallelism to use
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateJobProperties.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateJobProperties.cs
index abc28f047659..ad9704c19428 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateJobProperties.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateJobProperties.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -26,13 +24,14 @@ public partial class CreateJobProperties
///
public CreateJobProperties()
{
- CustomInit();
+ CustomInit();
}
///
/// Initializes a new instance of the CreateJobProperties class.
///
- /// the script to run
+ /// the script to run. Please note that the
+ /// maximum script size is 3 MB.
/// the runtime version of the Data Lake
/// Analytics engine to use for the specific type of job being
/// run.
@@ -56,7 +55,8 @@ public CreateJobProperties()
public string RuntimeVersion { get; set; }
///
- /// Gets or sets the script to run
+ /// Gets or sets the script to run. Please note that the maximum script
+ /// size is 3 MB.
///
[JsonProperty(PropertyName = "script")]
public string Script { get; set; }
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateScopeJobParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateScopeJobParameters.cs
new file mode 100644
index 000000000000..240e2887e28c
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateScopeJobParameters.cs
@@ -0,0 +1,84 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Linq;
+
+ ///
+ /// The parameters used to submit a new Data Lake Analytics Scope job.
+ /// (Only for use internally with Scope job type.)
+ ///
+ public partial class CreateScopeJobParameters : CreateJobParameters
+ {
+ ///
+ /// Initializes a new instance of the CreateScopeJobParameters class.
+ ///
+ public CreateScopeJobParameters()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the CreateScopeJobParameters class.
+ ///
+ /// the job type of the current job (Hive, USql, or
+ /// Scope (for internal use only)). Possible values include: 'USql',
+ /// 'Hive', 'Scope'
+ /// the job specific properties.
+ /// the friendly name of the job to submit.
+ /// the degree of parallelism to use
+ /// for this job. This must be greater than 0, if set to less than 0 it
+ /// will default to 1.
+ /// the priority value to use for the current
+ /// job. Lower numbers have a higher priority. By default, a job has a
+ /// priority of 1000. This must be greater than 0.
+ /// the list of log file name patterns to
+ /// find in the logFolder. '*' is the only matching character allowed.
+ /// Example format: jobExecution*.log or *mylog*.txt
+ /// the recurring job relationship information
+ /// properties.
+ /// the key-value pairs used to add additional
+ /// metadata to the job information. (Only for use internally with
+ /// Scope job type.)
+ public CreateScopeJobParameters(JobType type, CreateJobProperties properties, string name, int? degreeOfParallelism = default(int?), int? priority = default(int?), IList logFilePatterns = default(IList), JobRelationshipProperties related = default(JobRelationshipProperties), IDictionary tags = default(IDictionary))
+ : base(type, properties, name, degreeOfParallelism, priority, logFilePatterns, related)
+ {
+ Tags = tags;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets the key-value pairs used to add additional metadata to
+ /// the job information. (Only for use internally with Scope job type.)
+ ///
+ [JsonProperty(PropertyName = "tags")]
+ public IDictionary Tags { get; set; }
+
+ ///
+ /// Validate the object.
+ ///
+ ///
+ /// Thrown if validation fails
+ ///
+ public override void Validate()
+ {
+ base.Validate();
+ }
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateScopeJobProperties.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateScopeJobProperties.cs
new file mode 100644
index 000000000000..237adfd0e342
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateScopeJobProperties.cs
@@ -0,0 +1,82 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Linq;
+
+ ///
+ /// Scope job properties used when submitting Scope jobs.
+ ///
+ [Newtonsoft.Json.JsonObject("Scope")]
+ public partial class CreateScopeJobProperties : CreateJobProperties
+ {
+ ///
+ /// Initializes a new instance of the CreateScopeJobProperties class.
+ ///
+ public CreateScopeJobProperties()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the CreateScopeJobProperties class.
+ ///
+ /// the script to run. Please note that the
+ /// maximum script size is 3 MB.
+ /// the runtime version of the Data Lake
+ /// Analytics engine to use for the specific type of job being
+ /// run.
+ /// the list of resources that are required by
+ /// the job.
+ /// the list of email addresses, separated by
+ /// semi-colons, to notify when the job reaches a terminal
+ /// state.
+ public CreateScopeJobProperties(string script, string runtimeVersion = default(string), IList resources = default(IList), string notifier = default(string))
+ : base(script, runtimeVersion)
+ {
+ Resources = resources;
+ Notifier = notifier;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets the list of resources that are required by the job.
+ ///
+ [JsonProperty(PropertyName = "resources")]
+ public IList Resources { get; set; }
+
+ ///
+ /// Gets or sets the list of email addresses, separated by semi-colons,
+ /// to notify when the job reaches a terminal state.
+ ///
+ [JsonProperty(PropertyName = "notifier")]
+ public string Notifier { get; set; }
+
+ ///
+ /// Validate the object.
+ ///
+ ///
+ /// Thrown if validation fails
+ ///
+ public override void Validate()
+ {
+ base.Validate();
+ }
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateUSqlJobProperties.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateUSqlJobProperties.cs
index fedb1b580827..e2453494a1e1 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateUSqlJobProperties.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/CreateUSqlJobProperties.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -26,21 +24,21 @@ public partial class CreateUSqlJobProperties : CreateJobProperties
///
public CreateUSqlJobProperties()
{
- CustomInit();
+ CustomInit();
}
///
/// Initializes a new instance of the CreateUSqlJobProperties class.
///
- /// the script to run
+ /// the script to run. Please note that the
+ /// maximum script size is 3 MB.
/// the runtime version of the Data Lake
/// Analytics engine to use for the specific type of job being
/// run.
- /// Optionally enforces a specific
- /// compilation mode for the job during execution. If this is not
- /// specified during submission, the server will determine the optimal
- /// compilation mode. Possible values include: 'Semantic', 'Full',
- /// 'SingleBox'
+ /// the specific compilation mode for the job
+ /// used during execution. If this is not specified during submission,
+ /// the server will determine the optimal compilation mode. Possible
+ /// values include: 'Semantic', 'Full', 'SingleBox'
public CreateUSqlJobProperties(string script, string runtimeVersion = default(string), CompileMode? compileMode = default(CompileMode?))
: base(script, runtimeVersion)
{
@@ -54,10 +52,10 @@ public CreateUSqlJobProperties()
partial void CustomInit();
///
- /// Gets or sets optionally enforces a specific compilation mode for
- /// the job during execution. If this is not specified during
- /// submission, the server will determine the optimal compilation mode.
- /// Possible values include: 'Semantic', 'Full', 'SingleBox'
+ /// Gets or sets the specific compilation mode for the job used during
+ /// execution. If this is not specified during submission, the server
+ /// will determine the optimal compilation mode. Possible values
+ /// include: 'Semantic', 'Full', 'SingleBox'
///
[JsonProperty(PropertyName = "compileMode")]
public CompileMode? CompileMode { get; set; }
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs
index 162fa318cfa3..42651b321102 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -31,7 +29,7 @@ public partial class DataLakeAnalyticsAccount : Resource
///
public DataLakeAnalyticsAccount()
{
- CustomInit();
+ CustomInit();
}
///
@@ -50,7 +48,7 @@ public DataLakeAnalyticsAccount()
/// the provisioning status of the Data
/// Lake Analytics account. Possible values include: 'Failed',
/// 'Creating', 'Running', 'Succeeded', 'Patching', 'Suspending',
- /// 'Resuming', 'Deleting', 'Deleted'
+ /// 'Resuming', 'Deleting', 'Deleted', 'Undeleting', 'Canceled'
/// the state of the Data Lake Analytics account.
/// Possible values include: 'Active', 'Suspended'
/// the account creation time.
@@ -69,7 +67,7 @@ public DataLakeAnalyticsAccount()
/// the system defined
/// maximum supported degree of parallelism for this account, which
/// restricts the maximum value of parallelism the user can set for the
- /// account..
+ /// account.
/// the system defined maximum
/// supported jobs running under the account at the same time, which
/// restricts the maximum number of running jobs the user can set for
@@ -140,7 +138,7 @@ public DataLakeAnalyticsAccount()
/// Gets the provisioning status of the Data Lake Analytics account.
/// Possible values include: 'Failed', 'Creating', 'Running',
/// 'Succeeded', 'Patching', 'Suspending', 'Resuming', 'Deleting',
- /// 'Deleted'
+ /// 'Deleted', 'Undeleting', 'Canceled'
///
[JsonProperty(PropertyName = "properties.provisioningState")]
public DataLakeAnalyticsAccountStatus? ProvisioningState { get; private set; }
@@ -207,7 +205,7 @@ public DataLakeAnalyticsAccount()
///
/// Gets the system defined maximum supported degree of parallelism for
/// this account, which restricts the maximum value of parallelism the
- /// user can set for the account..
+ /// user can set for the account.
///
[JsonProperty(PropertyName = "properties.systemMaxDegreeOfParallelism")]
public int? SystemMaxDegreeOfParallelism { get; private set; }
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountBasic.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountBasic.cs
index f943078c84a7..b182ac7880a1 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountBasic.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountBasic.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -32,7 +30,7 @@ public partial class DataLakeAnalyticsAccountBasic : Resource
///
public DataLakeAnalyticsAccountBasic()
{
- CustomInit();
+ CustomInit();
}
///
@@ -47,7 +45,7 @@ public DataLakeAnalyticsAccountBasic()
/// the provisioning status of the Data
/// Lake Analytics account. Possible values include: 'Failed',
/// 'Creating', 'Running', 'Succeeded', 'Patching', 'Suspending',
- /// 'Resuming', 'Deleting', 'Deleted'
+ /// 'Resuming', 'Deleting', 'Deleted', 'Undeleting', 'Canceled'
/// the state of the Data Lake Analytics account.
/// Possible values include: 'Active', 'Suspended'
/// the account creation time.
@@ -78,7 +76,7 @@ public DataLakeAnalyticsAccountBasic()
/// Gets the provisioning status of the Data Lake Analytics account.
/// Possible values include: 'Failed', 'Creating', 'Running',
/// 'Succeeded', 'Patching', 'Suspending', 'Resuming', 'Deleting',
- /// 'Deleted'
+ /// 'Deleted', 'Undeleting', 'Canceled'
///
[JsonProperty(PropertyName = "properties.provisioningState")]
public DataLakeAnalyticsAccountStatus? ProvisioningState { get; private set; }
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountPropertiesBasic.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountPropertiesBasic.cs
index d4a2110a16f4..fe4232efbd3a 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountPropertiesBasic.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountPropertiesBasic.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -27,7 +25,7 @@ public partial class DataLakeAnalyticsAccountPropertiesBasic
///
public DataLakeAnalyticsAccountPropertiesBasic()
{
- CustomInit();
+ CustomInit();
}
///
@@ -37,7 +35,7 @@ public DataLakeAnalyticsAccountPropertiesBasic()
/// the provisioning status of the Data
/// Lake Analytics account. Possible values include: 'Failed',
/// 'Creating', 'Running', 'Succeeded', 'Patching', 'Suspending',
- /// 'Resuming', 'Deleting', 'Deleted'
+ /// 'Resuming', 'Deleting', 'Deleted', 'Undeleting', 'Canceled'
/// the state of the Data Lake Analytics account.
/// Possible values include: 'Active', 'Suspended'
/// the account creation time.
@@ -67,7 +65,7 @@ public DataLakeAnalyticsAccountPropertiesBasic()
/// Gets the provisioning status of the Data Lake Analytics account.
/// Possible values include: 'Failed', 'Creating', 'Running',
/// 'Succeeded', 'Patching', 'Suspending', 'Resuming', 'Deleting',
- /// 'Deleted'
+ /// 'Deleted', 'Undeleting', 'Canceled'
///
[JsonProperty(PropertyName = "provisioningState")]
public DataLakeAnalyticsAccountStatus? ProvisioningState { get; private set; }
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs
index 179a4c4805f6..d6de294c95e8 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime;
@@ -30,8 +28,10 @@ public enum DataLakeAnalyticsAccountState
}
internal static class DataLakeAnalyticsAccountStateEnumExtension
{
- internal static string ToSerializedValue(this DataLakeAnalyticsAccountState? value) =>
- value == null ? null : ((DataLakeAnalyticsAccountState)value).ToSerializedValue();
+ internal static string ToSerializedValue(this DataLakeAnalyticsAccountState? value)
+ {
+ return value == null ? null : ((DataLakeAnalyticsAccountState)value).ToSerializedValue();
+ }
internal static string ToSerializedValue(this DataLakeAnalyticsAccountState value)
{
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs
index 3052ed364c25..b28727e54ea7 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime;
@@ -40,12 +38,18 @@ public enum DataLakeAnalyticsAccountStatus
[EnumMember(Value = "Deleting")]
Deleting,
[EnumMember(Value = "Deleted")]
- Deleted
+ Deleted,
+ [EnumMember(Value = "Undeleting")]
+ Undeleting,
+ [EnumMember(Value = "Canceled")]
+ Canceled
}
internal static class DataLakeAnalyticsAccountStatusEnumExtension
{
- internal static string ToSerializedValue(this DataLakeAnalyticsAccountStatus? value) =>
- value == null ? null : ((DataLakeAnalyticsAccountStatus)value).ToSerializedValue();
+ internal static string ToSerializedValue(this DataLakeAnalyticsAccountStatus? value)
+ {
+ return value == null ? null : ((DataLakeAnalyticsAccountStatus)value).ToSerializedValue();
+ }
internal static string ToSerializedValue(this DataLakeAnalyticsAccountStatus value)
{
@@ -69,6 +73,10 @@ internal static string ToSerializedValue(this DataLakeAnalyticsAccountStatus val
return "Deleting";
case DataLakeAnalyticsAccountStatus.Deleted:
return "Deleted";
+ case DataLakeAnalyticsAccountStatus.Undeleting:
+ return "Undeleting";
+ case DataLakeAnalyticsAccountStatus.Canceled:
+ return "Canceled";
}
return null;
}
@@ -95,6 +103,10 @@ internal static string ToSerializedValue(this DataLakeAnalyticsAccountStatus val
return DataLakeAnalyticsAccountStatus.Deleting;
case "Deleted":
return DataLakeAnalyticsAccountStatus.Deleted;
+ case "Undeleting":
+ return DataLakeAnalyticsAccountStatus.Undeleting;
+ case "Canceled":
+ return DataLakeAnalyticsAccountStatus.Canceled;
}
return null;
}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs
index 511eff85fe5b..4753ff14e314 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -32,7 +30,7 @@ public partial class DataLakeAnalyticsAccountUpdateParameters
///
public DataLakeAnalyticsAccountUpdateParameters()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs
index b99cca78403c..13afc67085cb 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -27,7 +25,7 @@ public partial class DataLakeAnalyticsCatalogCredentialCreateParameters
///
public DataLakeAnalyticsCatalogCredentialCreateParameters()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs
index aabb55a037b8..9b4359d6ac59 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -26,7 +24,7 @@ public partial class DataLakeAnalyticsCatalogCredentialDeleteParameters
///
public DataLakeAnalyticsCatalogCredentialDeleteParameters()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs
index 5104db14081e..b0f3144fb9e6 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -26,7 +24,7 @@ public partial class DataLakeAnalyticsCatalogCredentialUpdateParameters
///
public DataLakeAnalyticsCatalogCredentialUpdateParameters()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs
index 906e93c5ad24..51674f9f0bb7 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -29,7 +27,7 @@ public partial class DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters
///
public DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs
index 21b371591f46..a7267ed066e6 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -28,7 +26,7 @@ public partial class DataLakeStoreAccountInfo : SubResource
///
public DataLakeStoreAccountInfo()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DdlName.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DdlName.cs
index 96f3efb1aa2b..6f83c247ce1a 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DdlName.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/DdlName.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class DdlName
///
public DdlName()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Diagnostics.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Diagnostics.cs
index d22bdfd3a09e..40932bcce928 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Diagnostics.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Diagnostics.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class Diagnostics
///
public Diagnostics()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/EntityId.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/EntityId.cs
index 6c1b00975a0e..b23066fbcbd3 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/EntityId.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/EntityId.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class EntityId
///
public EntityId()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ExternalTable.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ExternalTable.cs
index 8ad9d9aecb5b..5df240c45480 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ExternalTable.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ExternalTable.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class ExternalTable
///
public ExternalTable()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FileType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FileType.cs
index 917cd350cbaa..1f5ca8432ca6 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FileType.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FileType.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
///
/// Defines values for FileType.
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs
index 361a0af0ff1e..ffb5aa7edeeb 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime;
@@ -30,8 +28,10 @@ public enum FirewallAllowAzureIpsState
}
internal static class FirewallAllowAzureIpsStateEnumExtension
{
- internal static string ToSerializedValue(this FirewallAllowAzureIpsState? value) =>
- value == null ? null : ((FirewallAllowAzureIpsState)value).ToSerializedValue();
+ internal static string ToSerializedValue(this FirewallAllowAzureIpsState? value)
+ {
+ return value == null ? null : ((FirewallAllowAzureIpsState)value).ToSerializedValue();
+ }
internal static string ToSerializedValue(this FirewallAllowAzureIpsState value)
{
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallRule.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallRule.cs
index 68fa404d4dcb..5e469ecc58a2 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallRule.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallRule.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -28,7 +26,7 @@ public partial class FirewallRule : OptionalSubResource
///
public FirewallRule()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallState.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallState.cs
index 6dd8f9d401dd..f28b22cc8dcd 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallState.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/FirewallState.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime;
@@ -30,8 +28,10 @@ public enum FirewallState
}
internal static class FirewallStateEnumExtension
{
- internal static string ToSerializedValue(this FirewallState? value) =>
- value == null ? null : ((FirewallState)value).ToSerializedValue();
+ internal static string ToSerializedValue(this FirewallState? value)
+ {
+ return value == null ? null : ((FirewallState)value).ToSerializedValue();
+ }
internal static string ToSerializedValue(this FirewallState value)
{
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs
index 38e970d8da1b..fd244d5edcf7 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -26,13 +24,14 @@ public partial class HiveJobProperties : JobProperties
///
public HiveJobProperties()
{
- CustomInit();
+ CustomInit();
}
///
/// Initializes a new instance of the HiveJobProperties class.
///
- /// the script to run
+ /// the script to run. Please note that the
+ /// maximum script size is 3 MB.
/// the runtime version of the Data Lake
/// Analytics engine to use for the specific type of job being
/// run.
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobDataPath.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobDataPath.cs
index 04652a17beb2..712b19ec96f1 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobDataPath.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobDataPath.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +25,7 @@ public partial class JobDataPath
///
public JobDataPath()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs
index b2c92513ac54..02d6ab3b43a0 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class JobErrorDetails
///
public JobErrorDetails()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInformation.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInformation.cs
index cc1d0839727d..c1c0388a6857 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInformation.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInformation.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Collections;
@@ -29,15 +27,16 @@ public partial class JobInformation : JobInformationBasic
///
public JobInformation()
{
- CustomInit();
+ CustomInit();
}
///
/// Initializes a new instance of the JobInformation class.
///
/// the friendly name of the job.
- /// the job type of the current job (Hive or USql).
- /// Possible values include: 'USql', 'Hive'
+ /// the job type of the current job (Hive, USql, or
+ /// Scope (for internal use only)). Possible values include: 'USql',
+ /// 'Hive', 'Scope'
/// the job specific properties.
/// the job's unique identifier (a GUID).
/// the user or account that submitted the
@@ -68,13 +67,16 @@ public JobInformation()
/// Example format: jobExecution*.log or *mylog*.txt
/// the recurring job relationship information
/// properties.
+ /// the key-value pairs used to add additional
+ /// metadata to the job information. (Only for use internally with
+ /// Scope job type.)
/// the error message details for the job,
/// if the job failed.
/// the job state audit records,
/// indicating when various operations have been performed on this
/// job.
- public JobInformation(string name, JobType type, JobProperties properties, System.Guid? jobId = default(System.Guid?), string submitter = default(string), int? degreeOfParallelism = default(int?), int? priority = default(int?), System.DateTimeOffset? submitTime = default(System.DateTimeOffset?), System.DateTimeOffset? startTime = default(System.DateTimeOffset?), System.DateTimeOffset? endTime = default(System.DateTimeOffset?), JobState? state = default(JobState?), JobResult? result = default(JobResult?), string logFolder = default(string), IList logFilePatterns = default(IList), JobRelationshipProperties related = default(JobRelationshipProperties), IList errorMessage = default(IList), IList stateAuditRecords = default(IList))
- : base(name, type, jobId, submitter, degreeOfParallelism, priority, submitTime, startTime, endTime, state, result, logFolder, logFilePatterns, related)
+ public JobInformation(string name, JobType type, JobProperties properties, System.Guid? jobId = default(System.Guid?), string submitter = default(string), int? degreeOfParallelism = default(int?), int? priority = default(int?), System.DateTimeOffset? submitTime = default(System.DateTimeOffset?), System.DateTimeOffset? startTime = default(System.DateTimeOffset?), System.DateTimeOffset? endTime = default(System.DateTimeOffset?), JobState? state = default(JobState?), JobResult? result = default(JobResult?), string logFolder = default(string), IList logFilePatterns = default(IList), JobRelationshipProperties related = default(JobRelationshipProperties), IDictionary tags = default(IDictionary), IList errorMessage = default(IList), IList stateAuditRecords = default(IList))
+ : base(name, type, jobId, submitter, degreeOfParallelism, priority, submitTime, startTime, endTime, state, result, logFolder, logFilePatterns, related, tags)
{
ErrorMessage = errorMessage;
StateAuditRecords = stateAuditRecords;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInformationBasic.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInformationBasic.cs
index 5cd3a1af35fd..b2a9e836ee96 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInformationBasic.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInformationBasic.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Collections;
@@ -28,15 +26,16 @@ public partial class JobInformationBasic
///
public JobInformationBasic()
{
- CustomInit();
+ CustomInit();
}
///
/// Initializes a new instance of the JobInformationBasic class.
///
/// the friendly name of the job.
- /// the job type of the current job (Hive or USql).
- /// Possible values include: 'USql', 'Hive'
+ /// the job type of the current job (Hive, USql, or
+ /// Scope (for internal use only)). Possible values include: 'USql',
+ /// 'Hive', 'Scope'
/// the job's unique identifier (a GUID).
/// the user or account that submitted the
/// job.
@@ -66,7 +65,10 @@ public JobInformationBasic()
/// Example format: jobExecution*.log or *mylog*.txt
/// the recurring job relationship information
/// properties.
- public JobInformationBasic(string name, JobType type, System.Guid? jobId = default(System.Guid?), string submitter = default(string), int? degreeOfParallelism = default(int?), int? priority = default(int?), System.DateTimeOffset? submitTime = default(System.DateTimeOffset?), System.DateTimeOffset? startTime = default(System.DateTimeOffset?), System.DateTimeOffset? endTime = default(System.DateTimeOffset?), JobState? state = default(JobState?), JobResult? result = default(JobResult?), string logFolder = default(string), IList logFilePatterns = default(IList), JobRelationshipProperties related = default(JobRelationshipProperties))
+ /// the key-value pairs used to add additional
+ /// metadata to the job information. (Only for use internally with
+ /// Scope job type.)
+ public JobInformationBasic(string name, JobType type, System.Guid? jobId = default(System.Guid?), string submitter = default(string), int? degreeOfParallelism = default(int?), int? priority = default(int?), System.DateTimeOffset? submitTime = default(System.DateTimeOffset?), System.DateTimeOffset? startTime = default(System.DateTimeOffset?), System.DateTimeOffset? endTime = default(System.DateTimeOffset?), JobState? state = default(JobState?), JobResult? result = default(JobResult?), string logFolder = default(string), IList logFilePatterns = default(IList), JobRelationshipProperties related = default(JobRelationshipProperties), IDictionary tags = default(IDictionary))
{
JobId = jobId;
Name = name;
@@ -82,6 +84,7 @@ public JobInformationBasic()
LogFolder = logFolder;
LogFilePatterns = logFilePatterns;
Related = related;
+ Tags = tags;
CustomInit();
}
@@ -103,8 +106,9 @@ public JobInformationBasic()
public string Name { get; set; }
///
- /// Gets or sets the job type of the current job (Hive or USql).
- /// Possible values include: 'USql', 'Hive'
+ /// Gets or sets the job type of the current job (Hive, USql, or Scope
+ /// (for internal use only)). Possible values include: 'USql', 'Hive',
+ /// 'Scope'
///
[JsonProperty(PropertyName = "type")]
public JobType Type { get; set; }
@@ -186,6 +190,13 @@ public JobInformationBasic()
[JsonProperty(PropertyName = "related")]
public JobRelationshipProperties Related { get; set; }
+ ///
+ /// Gets or sets the key-value pairs used to add additional metadata to
+ /// the job information. (Only for use internally with Scope job type.)
+ ///
+ [JsonProperty(PropertyName = "tags")]
+ public IDictionary Tags { get; set; }
+
///
/// Validate the object.
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInnerError.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInnerError.cs
index 49232dc9c52e..22734f0930ba 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInnerError.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobInnerError.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class JobInnerError
///
public JobInnerError()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineInformation.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineInformation.cs
index 2485e699669e..8fbcfa04ffa9 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineInformation.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineInformation.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Collections;
@@ -29,7 +27,7 @@ public partial class JobPipelineInformation
///
public JobPipelineInformation()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineRunInformation.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineRunInformation.cs
index e1ff6d128ecc..910d0c200217 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineRunInformation.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobPipelineRunInformation.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class JobPipelineRunInformation
///
public JobPipelineRunInformation()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobProperties.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobProperties.cs
index 7a5ae8537e01..65c24c2d66de 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobProperties.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobProperties.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -26,13 +24,14 @@ public partial class JobProperties
///
public JobProperties()
{
- CustomInit();
+ CustomInit();
}
///
/// Initializes a new instance of the JobProperties class.
///
- /// the script to run
+ /// the script to run. Please note that the
+ /// maximum script size is 3 MB.
/// the runtime version of the Data Lake
/// Analytics engine to use for the specific type of job being
/// run.
@@ -56,7 +55,8 @@ public JobProperties()
public string RuntimeVersion { get; set; }
///
- /// Gets or sets the script to run
+ /// Gets or sets the script to run. Please note that the maximum script
+ /// size is 3 MB.
///
[JsonProperty(PropertyName = "script")]
public string Script { get; set; }
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRecurrenceInformation.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRecurrenceInformation.cs
index 7047dcf499ac..447aa343b89e 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRecurrenceInformation.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRecurrenceInformation.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class JobRecurrenceInformation
///
public JobRecurrenceInformation()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRelationshipProperties.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRelationshipProperties.cs
index 0aa2c54dc3f3..70a3a2d6821c 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRelationshipProperties.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobRelationshipProperties.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -27,7 +25,7 @@ public partial class JobRelationshipProperties
///
public JobRelationshipProperties()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResource.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResource.cs
index 71e28e4b4cca..244b2ed07363 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResource.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResource.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class JobResource
///
public JobResource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResourceType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResourceType.cs
index 893db8b55589..a0b215a08ef5 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResourceType.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResourceType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime;
@@ -38,8 +36,10 @@ public enum JobResourceType
}
internal static class JobResourceTypeEnumExtension
{
- internal static string ToSerializedValue(this JobResourceType? value) =>
- value == null ? null : ((JobResourceType)value).ToSerializedValue();
+ internal static string ToSerializedValue(this JobResourceType? value)
+ {
+ return value == null ? null : ((JobResourceType)value).ToSerializedValue();
+ }
internal static string ToSerializedValue(this JobResourceType value)
{
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResult.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResult.cs
index e488a3dfd542..7274c149bcd9 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResult.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobResult.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime;
@@ -34,8 +32,10 @@ public enum JobResult
}
internal static class JobResultEnumExtension
{
- internal static string ToSerializedValue(this JobResult? value) =>
- value == null ? null : ((JobResult)value).ToSerializedValue();
+ internal static string ToSerializedValue(this JobResult? value)
+ {
+ return value == null ? null : ((JobResult)value).ToSerializedValue();
+ }
internal static string ToSerializedValue(this JobResult value)
{
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobState.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobState.cs
index 287074048c11..b04502fb7d45 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobState.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobState.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime;
@@ -46,8 +44,10 @@ public enum JobState
}
internal static class JobStateEnumExtension
{
- internal static string ToSerializedValue(this JobState? value) =>
- value == null ? null : ((JobState)value).ToSerializedValue();
+ internal static string ToSerializedValue(this JobState? value)
+ {
+ return value == null ? null : ((JobState)value).ToSerializedValue();
+ }
internal static string ToSerializedValue(this JobState value)
{
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs
index 3dcd3f670b99..8afb7fec3c83 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -26,7 +24,7 @@ public partial class JobStateAuditRecord
///
public JobStateAuditRecord()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatistics.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatistics.cs
index 6b3cc19432b8..80d9eab107fa 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatistics.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatistics.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +25,7 @@ public partial class JobStatistics
///
public JobStatistics()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatisticsVertex.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatisticsVertex.cs
new file mode 100644
index 000000000000..594760e24390
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatisticsVertex.cs
@@ -0,0 +1,86 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// the detailed information for a vertex.
+ ///
+ public partial class JobStatisticsVertex
+ {
+ ///
+ /// Initializes a new instance of the JobStatisticsVertex class.
+ ///
+ public JobStatisticsVertex()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the JobStatisticsVertex class.
+ ///
+ /// the name of the vertex.
+ /// the id of the vertex.
+ /// the amount of execution time of the
+ /// vertex.
+ /// the amount of data read of the vertex, in
+ /// bytes.
+ /// the amount of peak memory usage of the
+ /// vertex, in bytes.
+ public JobStatisticsVertex(string name = default(string), System.Guid? vertexId = default(System.Guid?), System.TimeSpan? executionTime = default(System.TimeSpan?), long? dataRead = default(long?), long? peakMemUsage = default(long?))
+ {
+ Name = name;
+ VertexId = vertexId;
+ ExecutionTime = executionTime;
+ DataRead = dataRead;
+ PeakMemUsage = peakMemUsage;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets the name of the vertex.
+ ///
+ [JsonProperty(PropertyName = "name")]
+ public string Name { get; private set; }
+
+ ///
+ /// Gets the id of the vertex.
+ ///
+ [JsonProperty(PropertyName = "vertexId")]
+ public System.Guid? VertexId { get; private set; }
+
+ ///
+ /// Gets the amount of execution time of the vertex.
+ ///
+ [JsonProperty(PropertyName = "executionTime")]
+ public System.TimeSpan? ExecutionTime { get; private set; }
+
+ ///
+ /// Gets the amount of data read of the vertex, in bytes.
+ ///
+ [JsonProperty(PropertyName = "dataRead")]
+ public long? DataRead { get; private set; }
+
+ ///
+ /// Gets the amount of peak memory usage of the vertex, in bytes.
+ ///
+ [JsonProperty(PropertyName = "peakMemUsage")]
+ public long? PeakMemUsage { get; private set; }
+
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs
index 708bd73ac7fc..09298eb8782b 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class JobStatisticsVertexStage
///
public JobStatisticsVertexStage()
{
- CustomInit();
+ CustomInit();
}
///
@@ -70,7 +68,31 @@ public JobStatisticsVertexStage()
/// a percentage.
/// the amount of time all successful
/// vertices took in this stage.
- public JobStatisticsVertexStage(long? dataRead = default(long?), long? dataReadCrossPod = default(long?), long? dataReadIntraPod = default(long?), long? dataToRead = default(long?), long? dataWritten = default(long?), int? duplicateDiscardCount = default(int?), int? failedCount = default(int?), long? maxVertexDataRead = default(long?), long? minVertexDataRead = default(long?), int? readFailureCount = default(int?), int? revocationCount = default(int?), int? runningCount = default(int?), int? scheduledCount = default(int?), string stageName = default(string), int? succeededCount = default(int?), long? tempDataWritten = default(long?), int? totalCount = default(int?), System.TimeSpan? totalFailedTime = default(System.TimeSpan?), int? totalProgress = default(int?), System.TimeSpan? totalSucceededTime = default(System.TimeSpan?))
+ /// the sum of the peak memory usage of
+ /// all the vertices in the stage, in bytes.
+ /// the sum of the total execution
+ /// time of all the vertices in the stage.
+ /// the vertex with the maximum amount
+ /// of data read.
+ /// the vertex with the maximum
+ /// execution time.
+ /// the vertex with the maximum
+ /// peak memory usage.
+ /// the estimated vertex CPU
+ /// core count.
+ /// the estimated vertex
+ /// peak CPU core count.
+ /// the estimated vertex memory
+ /// size, in bytes.
+ /// the statistics
+ /// information for the allocated container CPU core count.
+ /// the statistics information
+ /// for the allocated container memory size.
+ /// the statistics information for
+ /// the used vertex CPU core count.
+ /// the statistics information for
+ /// the used vertex peak memory size.
+ public JobStatisticsVertexStage(long? dataRead = default(long?), long? dataReadCrossPod = default(long?), long? dataReadIntraPod = default(long?), long? dataToRead = default(long?), long? dataWritten = default(long?), int? duplicateDiscardCount = default(int?), int? failedCount = default(int?), long? maxVertexDataRead = default(long?), long? minVertexDataRead = default(long?), int? readFailureCount = default(int?), int? revocationCount = default(int?), int? runningCount = default(int?), int? scheduledCount = default(int?), string stageName = default(string), int? succeededCount = default(int?), long? tempDataWritten = default(long?), int? totalCount = default(int?), System.TimeSpan? totalFailedTime = default(System.TimeSpan?), int? totalProgress = default(int?), System.TimeSpan? totalSucceededTime = default(System.TimeSpan?), long? totalPeakMemUsage = default(long?), System.TimeSpan? totalExecutionTime = default(System.TimeSpan?), JobStatisticsVertex maxDataReadVertex = default(JobStatisticsVertex), JobStatisticsVertex maxExecutionTimeVertex = default(JobStatisticsVertex), JobStatisticsVertex maxPeakMemUsageVertex = default(JobStatisticsVertex), int? estimatedVertexCpuCoreCount = default(int?), int? estimatedVertexPeakCpuCoreCount = default(int?), long? estimatedVertexMemSize = default(long?), ResourceUsageStatistics allocatedContainerCpuCoreCount = default(ResourceUsageStatistics), ResourceUsageStatistics allocatedContainerMemSize = default(ResourceUsageStatistics), ResourceUsageStatistics usedVertexCpuCoreCount = default(ResourceUsageStatistics), ResourceUsageStatistics usedVertexPeakMemSize = default(ResourceUsageStatistics))
{
DataRead = dataRead;
DataReadCrossPod = dataReadCrossPod;
@@ -92,6 +114,18 @@ public JobStatisticsVertexStage()
TotalFailedTime = totalFailedTime;
TotalProgress = totalProgress;
TotalSucceededTime = totalSucceededTime;
+ TotalPeakMemUsage = totalPeakMemUsage;
+ TotalExecutionTime = totalExecutionTime;
+ MaxDataReadVertex = maxDataReadVertex;
+ MaxExecutionTimeVertex = maxExecutionTimeVertex;
+ MaxPeakMemUsageVertex = maxPeakMemUsageVertex;
+ EstimatedVertexCpuCoreCount = estimatedVertexCpuCoreCount;
+ EstimatedVertexPeakCpuCoreCount = estimatedVertexPeakCpuCoreCount;
+ EstimatedVertexMemSize = estimatedVertexMemSize;
+ AllocatedContainerCpuCoreCount = allocatedContainerCpuCoreCount;
+ AllocatedContainerMemSize = allocatedContainerMemSize;
+ UsedVertexCpuCoreCount = usedVertexCpuCoreCount;
+ UsedVertexPeakMemSize = usedVertexPeakMemSize;
CustomInit();
}
@@ -220,5 +254,83 @@ public JobStatisticsVertexStage()
[JsonProperty(PropertyName = "totalSucceededTime")]
public System.TimeSpan? TotalSucceededTime { get; private set; }
+ ///
+ /// Gets the sum of the peak memory usage of all the vertices in the
+ /// stage, in bytes.
+ ///
+ [JsonProperty(PropertyName = "totalPeakMemUsage")]
+ public long? TotalPeakMemUsage { get; private set; }
+
+ ///
+ /// Gets the sum of the total execution time of all the vertices in the
+ /// stage.
+ ///
+ [JsonProperty(PropertyName = "totalExecutionTime")]
+ public System.TimeSpan? TotalExecutionTime { get; private set; }
+
+ ///
+ /// Gets or sets the vertex with the maximum amount of data read.
+ ///
+ [JsonProperty(PropertyName = "maxDataReadVertex")]
+ public JobStatisticsVertex MaxDataReadVertex { get; set; }
+
+ ///
+ /// Gets or sets the vertex with the maximum execution time.
+ ///
+ [JsonProperty(PropertyName = "maxExecutionTimeVertex")]
+ public JobStatisticsVertex MaxExecutionTimeVertex { get; set; }
+
+ ///
+ /// Gets or sets the vertex with the maximum peak memory usage.
+ ///
+ [JsonProperty(PropertyName = "maxPeakMemUsageVertex")]
+ public JobStatisticsVertex MaxPeakMemUsageVertex { get; set; }
+
+ ///
+ /// Gets the estimated vertex CPU core count.
+ ///
+ [JsonProperty(PropertyName = "estimatedVertexCpuCoreCount")]
+ public int? EstimatedVertexCpuCoreCount { get; private set; }
+
+ ///
+ /// Gets the estimated vertex peak CPU core count.
+ ///
+ [JsonProperty(PropertyName = "estimatedVertexPeakCpuCoreCount")]
+ public int? EstimatedVertexPeakCpuCoreCount { get; private set; }
+
+ ///
+ /// Gets the estimated vertex memory size, in bytes.
+ ///
+ [JsonProperty(PropertyName = "estimatedVertexMemSize")]
+ public long? EstimatedVertexMemSize { get; private set; }
+
+ ///
+ /// Gets or sets the statistics information for the allocated container
+ /// CPU core count.
+ ///
+ [JsonProperty(PropertyName = "allocatedContainerCpuCoreCount")]
+ public ResourceUsageStatistics AllocatedContainerCpuCoreCount { get; set; }
+
+ ///
+ /// Gets or sets the statistics information for the allocated container
+ /// memory size.
+ ///
+ [JsonProperty(PropertyName = "allocatedContainerMemSize")]
+ public ResourceUsageStatistics AllocatedContainerMemSize { get; set; }
+
+ ///
+ /// Gets or sets the statistics information for the used vertex CPU
+ /// core count.
+ ///
+ [JsonProperty(PropertyName = "usedVertexCpuCoreCount")]
+ public ResourceUsageStatistics UsedVertexCpuCoreCount { get; set; }
+
+ ///
+ /// Gets or sets the statistics information for the used vertex peak
+ /// memory size.
+ ///
+ [JsonProperty(PropertyName = "usedVertexPeakMemSize")]
+ public ResourceUsageStatistics UsedVertexPeakMemSize { get; set; }
+
}
}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobType.cs
index 9d638196d5e6..103d7cc945da 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobType.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/JobType.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime;
@@ -26,12 +24,16 @@ public enum JobType
[EnumMember(Value = "USql")]
USql,
[EnumMember(Value = "Hive")]
- Hive
+ Hive,
+ [EnumMember(Value = "Scope")]
+ Scope
}
internal static class JobTypeEnumExtension
{
- internal static string ToSerializedValue(this JobType? value) =>
- value == null ? null : ((JobType)value).ToSerializedValue();
+ internal static string ToSerializedValue(this JobType? value)
+ {
+ return value == null ? null : ((JobType)value).ToSerializedValue();
+ }
internal static string ToSerializedValue(this JobType value)
{
@@ -41,6 +43,8 @@ internal static string ToSerializedValue(this JobType value)
return "USql";
case JobType.Hive:
return "Hive";
+ case JobType.Scope:
+ return "Scope";
}
return null;
}
@@ -53,6 +57,8 @@ internal static string ToSerializedValue(this JobType value)
return JobType.USql;
case "Hive":
return JobType.Hive;
+ case "Scope":
+ return JobType.Scope;
}
return null;
}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/NameAvailabilityInformation.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/NameAvailabilityInformation.cs
new file mode 100644
index 000000000000..af04134a2edb
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/NameAvailabilityInformation.cs
@@ -0,0 +1,77 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// Data Lake Analytics account name availability result information
+ ///
+ public partial class NameAvailabilityInformation
+ {
+ ///
+ /// Initializes a new instance of the NameAvailabilityInformation
+ /// class.
+ ///
+ public NameAvailabilityInformation()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the NameAvailabilityInformation
+ /// class.
+ ///
+ /// the Boolean value of true or false to
+ /// indicate whether the Data Lake Analytics account name is available
+ /// or not.
+ /// the reason why the Data Lake Analytics account
+ /// name is not available, if nameAvailable is false.
+ /// the message describing why the Data Lake
+ /// Analytics account name is not available, if nameAvailable is
+ /// false.
+ public NameAvailabilityInformation(bool? nameAvailable = default(bool?), string reason = default(string), string message = default(string))
+ {
+ NameAvailable = nameAvailable;
+ Reason = reason;
+ Message = message;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets the Boolean value of true or false to indicate whether the
+ /// Data Lake Analytics account name is available or not.
+ ///
+ [JsonProperty(PropertyName = "nameAvailable")]
+ public bool? NameAvailable { get; private set; }
+
+ ///
+ /// Gets the reason why the Data Lake Analytics account name is not
+ /// available, if nameAvailable is false.
+ ///
+ [JsonProperty(PropertyName = "reason")]
+ public string Reason { get; private set; }
+
+ ///
+ /// Gets the message describing why the Data Lake Analytics account
+ /// name is not available, if nameAvailable is false.
+ ///
+ [JsonProperty(PropertyName = "message")]
+ public string Message { get; private set; }
+
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Operation.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Operation.cs
new file mode 100644
index 000000000000..78c807e8971a
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Operation.cs
@@ -0,0 +1,70 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// An available operation for Data Lake Analytics
+ ///
+ public partial class Operation
+ {
+ ///
+ /// Initializes a new instance of the Operation class.
+ ///
+ public Operation()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the Operation class.
+ ///
+ /// the name of the operation.
+ /// the display information for the
+ /// operation.
+ /// the intended executor of the operation.
+ /// Possible values include: 'user', 'system', 'user,system'
+ public Operation(string name = default(string), OperationDisplay display = default(OperationDisplay), string origin = default(string))
+ {
+ Name = name;
+ Display = display;
+ Origin = origin;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets the name of the operation.
+ ///
+ [JsonProperty(PropertyName = "name")]
+ public string Name { get; private set; }
+
+ ///
+ /// Gets or sets the display information for the operation.
+ ///
+ [JsonProperty(PropertyName = "display")]
+ public OperationDisplay Display { get; set; }
+
+ ///
+ /// Gets the intended executor of the operation. Possible values
+ /// include: 'user', 'system', 'user,system'
+ ///
+ [JsonProperty(PropertyName = "origin")]
+ public string Origin { get; private set; }
+
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OperationDisplay.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OperationDisplay.cs
new file mode 100644
index 000000000000..f1647c2cffd1
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OperationDisplay.cs
@@ -0,0 +1,77 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// The display information for a particular operation
+ ///
+ public partial class OperationDisplay
+ {
+ ///
+ /// Initializes a new instance of the OperationDisplay class.
+ ///
+ public OperationDisplay()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the OperationDisplay class.
+ ///
+ /// the Resource provider of the
+ /// operation.
+ /// the Resource type of the operation.
+ /// a friendly name of the operation.
+ /// a friendly description of the
+ /// operation.
+ public OperationDisplay(string provider = default(string), string resource = default(string), string operation = default(string), string description = default(string))
+ {
+ Provider = provider;
+ Resource = resource;
+ Operation = operation;
+ Description = description;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets the Resource provider of the operation.
+ ///
+ [JsonProperty(PropertyName = "provider")]
+ public string Provider { get; private set; }
+
+ ///
+ /// Gets the Resource type of the operation.
+ ///
+ [JsonProperty(PropertyName = "resource")]
+ public string Resource { get; private set; }
+
+ ///
+ /// Gets a friendly name of the operation.
+ ///
+ [JsonProperty(PropertyName = "operation")]
+ public string Operation { get; private set; }
+
+ ///
+ /// Gets a friendly description of the operation.
+ ///
+ [JsonProperty(PropertyName = "description")]
+ public string Description { get; private set; }
+
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OperationListResult.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OperationListResult.cs
new file mode 100644
index 000000000000..575e74282c6e
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OperationListResult.cs
@@ -0,0 +1,62 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Linq;
+
+ ///
+ /// The list of available operations for Data Lake Analytics
+ ///
+ public partial class OperationListResult
+ {
+ ///
+ /// Initializes a new instance of the OperationListResult class.
+ ///
+ public OperationListResult()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the OperationListResult class.
+ ///
+ /// the results of the list operation.
+ /// the link (url) to the next page of
+ /// results.
+ public OperationListResult(IList value = default(IList), string nextLink = default(string))
+ {
+ Value = value;
+ NextLink = nextLink;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets the results of the list operation.
+ ///
+ [JsonProperty(PropertyName = "value")]
+ public IList Value { get; private set; }
+
+ ///
+ /// Gets the link (url) to the next page of results.
+ ///
+ [JsonProperty(PropertyName = "nextLink")]
+ public string NextLink { get; private set; }
+
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OperationOrigin.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OperationOrigin.cs
new file mode 100644
index 000000000000..a83674a722e5
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OperationOrigin.cs
@@ -0,0 +1,23 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+
+ ///
+ /// Defines values for OperationOrigin.
+ ///
+ public static class OperationOrigin
+ {
+ public const string User = "user";
+ public const string System = "system";
+ public const string Usersystem = "user,system";
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs
index 6a10cb602ae3..effc7de94a40 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -26,7 +24,7 @@ public partial class OptionalSubResource
///
public OptionalSubResource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Page.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Page.cs
index 94349921109c..b5a213e7d785 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Page.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Page.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Newtonsoft.Json;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/PermissionType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/PermissionType.cs
new file mode 100644
index 000000000000..8e647cb7998d
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/PermissionType.cs
@@ -0,0 +1,27 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+
+ ///
+ /// Defines values for PermissionType.
+ ///
+ public static class PermissionType
+ {
+ public const string None = "None";
+ public const string Use = "Use";
+ public const string Create = "Create";
+ public const string Drop = "Drop";
+ public const string Alter = "Alter";
+ public const string Write = "Write";
+ public const string All = "All";
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Resource.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Resource.cs
index c14cd02b9491..be8226c325f6 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Resource.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/Resource.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Newtonsoft.Json;
@@ -29,7 +27,7 @@ public partial class Resource : IResource
///
public Resource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ResourceUsageStatistics.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ResourceUsageStatistics.cs
new file mode 100644
index 000000000000..98f83d90ac97
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ResourceUsageStatistics.cs
@@ -0,0 +1,67 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// the statistics information for resource usage.
+ ///
+ public partial class ResourceUsageStatistics
+ {
+ ///
+ /// Initializes a new instance of the ResourceUsageStatistics class.
+ ///
+ public ResourceUsageStatistics()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the ResourceUsageStatistics class.
+ ///
+ /// the average value.
+ /// the minimum value.
+ /// the maximum value.
+ public ResourceUsageStatistics(double? average = default(double?), long? minimum = default(long?), long? maximum = default(long?))
+ {
+ Average = average;
+ Minimum = minimum;
+ Maximum = maximum;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets the average value.
+ ///
+ [JsonProperty(PropertyName = "average")]
+ public double? Average { get; private set; }
+
+ ///
+ /// Gets the minimum value.
+ ///
+ [JsonProperty(PropertyName = "minimum")]
+ public long? Minimum { get; private set; }
+
+ ///
+ /// Gets the maximum value.
+ ///
+ [JsonProperty(PropertyName = "maximum")]
+ public long? Maximum { get; private set; }
+
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs
index b9b69c8cd0d0..e5d6d1b50130 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class SasTokenInfo
///
public SasTokenInfo()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ScopeJobProperties.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ScopeJobProperties.cs
new file mode 100644
index 000000000000..58801b57bd8d
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ScopeJobProperties.cs
@@ -0,0 +1,160 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Linq;
+
+ ///
+ /// Scope job properties used when submitting and retrieving Scope jobs.
+ /// (Only for use internally with Scope job type.)
+ ///
+ [Newtonsoft.Json.JsonObject("Scope")]
+ public partial class ScopeJobProperties : JobProperties
+ {
+ ///
+ /// Initializes a new instance of the ScopeJobProperties class.
+ ///
+ public ScopeJobProperties()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the ScopeJobProperties class.
+ ///
+ /// the script to run. Please note that the
+ /// maximum script size is 3 MB.
+ /// the runtime version of the Data Lake
+ /// Analytics engine to use for the specific type of job being
+ /// run.
+ /// the list of resources that are required by
+ /// the job
+ /// the algebra file path after the job
+ /// has completed
+ /// the list of email addresses, separated by
+ /// semi-colons, to notify when the job reaches a terminal
+ /// state.
+ /// the total time this job spent
+ /// compiling. This value should not be set by the user and will be
+ /// ignored if it is.
+ /// the total time this job spent paused.
+ /// This value should not be set by the user and will be ignored if it
+ /// is.
+ /// the total time this job spent queued.
+ /// This value should not be set by the user and will be ignored if it
+ /// is.
+ /// the total time this job spent
+ /// executing. This value should not be set by the user and will be
+ /// ignored if it is.
+ /// the ID used to identify the job
+ /// manager coordinating job execution. This value should not be set by
+ /// the user and will be ignored if it is.
+ /// the ID used to identify the yarn
+ /// application executing the job. This value should not be set by the
+ /// user and will be ignored if it is.
+ public ScopeJobProperties(string script, string runtimeVersion = default(string), IList resources = default(IList), string userAlgebraPath = default(string), string notifier = default(string), System.TimeSpan? totalCompilationTime = default(System.TimeSpan?), System.TimeSpan? totalPausedTime = default(System.TimeSpan?), System.TimeSpan? totalQueuedTime = default(System.TimeSpan?), System.TimeSpan? totalRunningTime = default(System.TimeSpan?), string rootProcessNodeId = default(string), string yarnApplicationId = default(string))
+ : base(script, runtimeVersion)
+ {
+ Resources = resources;
+ UserAlgebraPath = userAlgebraPath;
+ Notifier = notifier;
+ TotalCompilationTime = totalCompilationTime;
+ TotalPausedTime = totalPausedTime;
+ TotalQueuedTime = totalQueuedTime;
+ TotalRunningTime = totalRunningTime;
+ RootProcessNodeId = rootProcessNodeId;
+ YarnApplicationId = yarnApplicationId;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets the list of resources that are required by the job
+ ///
+ [JsonProperty(PropertyName = "resources")]
+ public IList Resources { get; private set; }
+
+ ///
+ /// Gets the algebra file path after the job has completed
+ ///
+ [JsonProperty(PropertyName = "userAlgebraPath")]
+ public string UserAlgebraPath { get; private set; }
+
+ ///
+ /// Gets or sets the list of email addresses, separated by semi-colons,
+ /// to notify when the job reaches a terminal state.
+ ///
+ [JsonProperty(PropertyName = "notifier")]
+ public string Notifier { get; set; }
+
+ ///
+ /// Gets the total time this job spent compiling. This value should not
+ /// be set by the user and will be ignored if it is.
+ ///
+ [JsonProperty(PropertyName = "totalCompilationTime")]
+ public System.TimeSpan? TotalCompilationTime { get; private set; }
+
+ ///
+ /// Gets the total time this job spent paused. This value should not be
+ /// set by the user and will be ignored if it is.
+ ///
+ [JsonProperty(PropertyName = "totalPausedTime")]
+ public System.TimeSpan? TotalPausedTime { get; private set; }
+
+ ///
+ /// Gets the total time this job spent queued. This value should not be
+ /// set by the user and will be ignored if it is.
+ ///
+ [JsonProperty(PropertyName = "totalQueuedTime")]
+ public System.TimeSpan? TotalQueuedTime { get; private set; }
+
+ ///
+ /// Gets the total time this job spent executing. This value should not
+ /// be set by the user and will be ignored if it is.
+ ///
+ [JsonProperty(PropertyName = "totalRunningTime")]
+ public System.TimeSpan? TotalRunningTime { get; private set; }
+
+ ///
+ /// Gets the ID used to identify the job manager coordinating job
+ /// execution. This value should not be set by the user and will be
+ /// ignored if it is.
+ ///
+ [JsonProperty(PropertyName = "rootProcessNodeId")]
+ public string RootProcessNodeId { get; private set; }
+
+ ///
+ /// Gets the ID used to identify the yarn application executing the
+ /// job. This value should not be set by the user and will be ignored
+ /// if it is.
+ ///
+ [JsonProperty(PropertyName = "yarnApplicationId")]
+ public string YarnApplicationId { get; private set; }
+
+ ///
+ /// Validate the object.
+ ///
+ ///
+ /// Thrown if validation fails
+ ///
+ public override void Validate()
+ {
+ base.Validate();
+ }
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ScopeJobResource.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ScopeJobResource.cs
new file mode 100644
index 000000000000..f26c54ce00c3
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/ScopeJobResource.cs
@@ -0,0 +1,59 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// The Scope job resources. (Only for use internally with Scope job type.)
+ ///
+ public partial class ScopeJobResource
+ {
+ ///
+ /// Initializes a new instance of the ScopeJobResource class.
+ ///
+ public ScopeJobResource()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the ScopeJobResource class.
+ ///
+ /// the name of the resource.
+ /// the path to the resource.
+ public ScopeJobResource(string name = default(string), string path = default(string))
+ {
+ Name = name;
+ Path = path;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets the name of the resource.
+ ///
+ [JsonProperty(PropertyName = "name")]
+ public string Name { get; set; }
+
+ ///
+ /// Gets or sets the path to the resource.
+ ///
+ [JsonProperty(PropertyName = "path")]
+ public string Path { get; set; }
+
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs
index 8474d148f228..07f0f5621e65 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime;
@@ -38,8 +36,10 @@ public enum SeverityTypes
}
internal static class SeverityTypesEnumExtension
{
- internal static string ToSerializedValue(this SeverityTypes? value) =>
- value == null ? null : ((SeverityTypes)value).ToSerializedValue();
+ internal static string ToSerializedValue(this SeverityTypes? value)
+ {
+ return value == null ? null : ((SeverityTypes)value).ToSerializedValue();
+ }
internal static string ToSerializedValue(this SeverityTypes value)
{
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs
index eb27a428745a..320cc00b7593 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -28,7 +26,7 @@ public partial class StorageAccountInfo : SubResource
///
public StorageAccountInfo()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageContainer.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageContainer.cs
index 0b293436fbea..e815ebbc199e 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageContainer.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/StorageContainer.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -28,7 +26,7 @@ public partial class StorageContainer
///
public StorageContainer()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SubResource.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SubResource.cs
index 8bcc04fccc89..28db7f464154 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SubResource.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SubResource.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
@@ -26,7 +24,7 @@ public partial class SubResource
///
public SubResource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SubscriptionState.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SubscriptionState.cs
new file mode 100644
index 000000000000..0e3d786fc271
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/SubscriptionState.cs
@@ -0,0 +1,25 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+
+ ///
+ /// Defines values for SubscriptionState.
+ ///
+ public static class SubscriptionState
+ {
+ public const string Registered = "Registered";
+ public const string Suspended = "Suspended";
+ public const string Deleted = "Deleted";
+ public const string Unregistered = "Unregistered";
+ public const string Warned = "Warned";
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TierType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TierType.cs
index fa3dc57e4ccf..5809a10ee965 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TierType.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TierType.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime;
@@ -44,8 +42,10 @@ public enum TierType
}
internal static class TierTypeEnumExtension
{
- internal static string ToSerializedValue(this TierType? value) =>
- value == null ? null : ((TierType)value).ToSerializedValue();
+ internal static string ToSerializedValue(this TierType? value)
+ {
+ return value == null ? null : ((TierType)value).ToSerializedValue();
+ }
internal static string ToSerializedValue(this TierType value)
{
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs
index bb4bcfb2ea09..e2c5a36501c5 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class TypeFieldInfo
///
public TypeFieldInfo()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs
index 1d7967f41863..009850b89617 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +25,7 @@ public partial class USqlAssembly : CatalogItem
///
public USqlAssembly()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs
index 70f003a5c755..9f2f6aa2f8cd 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class USqlAssemblyClr : CatalogItem
///
public USqlAssemblyClr()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs
index 935475ba2823..9cbb06f244dc 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class USqlAssemblyDependencyInfo
///
public USqlAssemblyDependencyInfo()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs
index 21ef0fb1cb89..b3005843cdc9 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class USqlAssemblyFileInfo
///
public USqlAssemblyFileInfo()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlCredential.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlCredential.cs
index 241f9d0a56fc..0b88dc0e7424 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlCredential.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlCredential.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class USqlCredential : CatalogItem
///
public USqlCredential()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs
index 876cb5a5da11..f25d730443ed 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class USqlDatabase : CatalogItem
///
public USqlDatabase()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs
index dc136c6cd097..b472b3701ec9 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class USqlDirectedColumn
///
public USqlDirectedColumn()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs
index 7a1735b462fc..978c316b1cec 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +25,7 @@ public partial class USqlDistributionInfo
///
public USqlDistributionInfo()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs
index cf757a75d765..181879a2ca29 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +25,7 @@ public partial class USqlExternalDataSource : CatalogItem
///
public USqlExternalDataSource()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlIndex.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlIndex.cs
index 9374645c504a..2e13b6487433 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlIndex.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlIndex.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +25,7 @@ public partial class USqlIndex
///
public USqlIndex()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs
index 0ec01c7b3240..a84b0cc9a723 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,13 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -28,13 +26,14 @@ public partial class USqlJobProperties : JobProperties
///
public USqlJobProperties()
{
- CustomInit();
+ CustomInit();
}
///
/// Initializes a new instance of the USqlJobProperties class.
///
- /// the script to run
+ /// the script to run. Please note that the
+ /// maximum script size is 3 MB.
/// the runtime version of the Data Lake
/// Analytics engine to use for the specific type of job being
/// run.
@@ -49,7 +48,7 @@ public USqlJobProperties()
/// the total time this job spent
/// compiling. This value should not be set by the user and will be
/// ignored if it is.
- /// the total time this job spent paused.
+ /// the total time this job spent paused.
/// This value should not be set by the user and will be ignored if it
/// is.
/// the total time this job spent queued.
@@ -71,7 +70,7 @@ public USqlJobProperties()
/// used during execution. If this is not specified during submission,
/// the server will determine the optimal compilation mode. Possible
/// values include: 'Semantic', 'Full', 'SingleBox'
- public USqlJobProperties(string script, string runtimeVersion = default(string), IList resources = default(IList), JobStatistics statistics = default(JobStatistics), JobDataPath debugData = default(JobDataPath), IList diagnostics = default(IList), string algebraFilePath = default(string), System.TimeSpan? totalCompilationTime = default(System.TimeSpan?), System.TimeSpan? totalPauseTime = default(System.TimeSpan?), System.TimeSpan? totalQueuedTime = default(System.TimeSpan?), System.TimeSpan? totalRunningTime = default(System.TimeSpan?), string rootProcessNodeId = default(string), string yarnApplicationId = default(string), long? yarnApplicationTimeStamp = default(long?), CompileMode? compileMode = default(CompileMode?))
+ public USqlJobProperties(string script, string runtimeVersion = default(string), IList resources = default(IList), JobStatistics statistics = default(JobStatistics), JobDataPath debugData = default(JobDataPath), IList diagnostics = default(IList), string algebraFilePath = default(string), System.TimeSpan? totalCompilationTime = default(System.TimeSpan?), System.TimeSpan? totalPausedTime = default(System.TimeSpan?), System.TimeSpan? totalQueuedTime = default(System.TimeSpan?), System.TimeSpan? totalRunningTime = default(System.TimeSpan?), string rootProcessNodeId = default(string), string yarnApplicationId = default(string), long? yarnApplicationTimeStamp = default(long?), CompileMode? compileMode = default(CompileMode?))
: base(script, runtimeVersion)
{
Resources = resources;
@@ -80,7 +79,7 @@ public USqlJobProperties()
Diagnostics = diagnostics;
AlgebraFilePath = algebraFilePath;
TotalCompilationTime = totalCompilationTime;
- TotalPauseTime = totalPauseTime;
+ TotalPausedTime = totalPausedTime;
TotalQueuedTime = totalQueuedTime;
TotalRunningTime = totalRunningTime;
RootProcessNodeId = rootProcessNodeId;
@@ -136,8 +135,8 @@ public USqlJobProperties()
/// Gets the total time this job spent paused. This value should not be
/// set by the user and will be ignored if it is.
///
- [JsonProperty(PropertyName = "totalPauseTime")]
- public System.TimeSpan? TotalPauseTime { get; private set; }
+ [JsonProperty(PropertyName = "totalPausedTime")]
+ public System.TimeSpan? TotalPausedTime { get; private set; }
///
/// Gets the total time this job spent queued. This value should not be
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlPackage.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlPackage.cs
index fe0436923ea5..6634f2ecd3d6 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlPackage.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlPackage.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class USqlPackage : CatalogItem
///
public USqlPackage()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs
index d564c6853b58..d9403f39f4e6 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class USqlProcedure : CatalogItem
///
public USqlProcedure()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSchema.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSchema.cs
index fa707d79fee4..bd93c8ebc5fe 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSchema.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSchema.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class USqlSchema : CatalogItem
///
public USqlSchema()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSecret.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSecret.cs
index ac484b2c584f..e4bb7ec5ad36 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSecret.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlSecret.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class USqlSecret : CatalogItem
///
public USqlSecret()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTable.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTable.cs
index f52293d659e3..94d9440754a9 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTable.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTable.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +25,7 @@ public partial class USqlTable : CatalogItem
///
public USqlTable()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs
index 72a012f8de84..ec2a350dec56 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class USqlTableColumn
///
public USqlTableColumn()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs
index 261ae13aea29..4a81a14a6472 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +25,7 @@ public partial class USqlTablePartition : CatalogItem
///
public USqlTablePartition()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs
index 9b7f0f092c58..dc8f0067b330 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +25,7 @@ public partial class USqlTableStatistics : CatalogItem
///
public USqlTableStatistics()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableType.cs
index 11808d3e3835..ece650633e9d 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableType.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableType.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
@@ -27,7 +25,7 @@ public partial class USqlTableType : USqlType
///
public USqlTableType()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs
index 48a78edd5d59..3ef4a8a144b3 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class USqlTableValuedFunction : CatalogItem
///
public USqlTableValuedFunction()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlType.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlType.cs
index a46fd52260af..1101da938f97 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlType.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlType.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class USqlType : CatalogItem
///
public USqlType()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlView.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlView.cs
index d55759a03dd0..59c76e6b76de 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlView.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/USqlView.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Newtonsoft.Json;
using System.Linq;
@@ -25,7 +23,7 @@ public partial class USqlView : CatalogItem
///
public USqlView()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs
index 71795052a4f7..7b1c53df702e 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -29,7 +27,7 @@ public partial class UpdateFirewallRuleParameters
///
public UpdateFirewallRuleParameters()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateJobParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateJobParameters.cs
new file mode 100644
index 000000000000..f799dea2b0ad
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateJobParameters.cs
@@ -0,0 +1,81 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics.Models
+{
+ using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Linq;
+
+ ///
+ /// The parameters that can be used to update existing Data Lake Analytics
+ /// job information properties. (Only for use internally with Scope job
+ /// type.)
+ ///
+ public partial class UpdateJobParameters
+ {
+ ///
+ /// Initializes a new instance of the UpdateJobParameters class.
+ ///
+ public UpdateJobParameters()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the UpdateJobParameters class.
+ ///
+ /// the degree of parallelism used
+ /// for this job. This must be greater than 0, if set to less than 0 it
+ /// will default to 1.
+ /// the priority value for the current job.
+ /// Lower numbers have a higher priority. By default, a job has a
+ /// priority of 1000. This must be greater than 0.
+ /// the key-value pairs used to add additional
+ /// metadata to the job information. (Only for use internally with
+ /// Scope job type.)
+ public UpdateJobParameters(int? degreeOfParallelism = default(int?), int? priority = default(int?), IDictionary tags = default(IDictionary))
+ {
+ DegreeOfParallelism = degreeOfParallelism;
+ Priority = priority;
+ Tags = tags;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets the degree of parallelism used for this job. This must
+ /// be greater than 0, if set to less than 0 it will default to 1.
+ ///
+ [JsonProperty(PropertyName = "degreeOfParallelism")]
+ public int? DegreeOfParallelism { get; set; }
+
+ ///
+ /// Gets or sets the priority value for the current job. Lower numbers
+ /// have a higher priority. By default, a job has a priority of 1000.
+ /// This must be greater than 0.
+ ///
+ [JsonProperty(PropertyName = "priority")]
+ public int? Priority { get; set; }
+
+ ///
+ /// Gets or sets the key-value pairs used to add additional metadata to
+ /// the job information. (Only for use internally with Scope job type.)
+ ///
+ [JsonProperty(PropertyName = "tags")]
+ public IDictionary Tags { get; set; }
+
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs
index bdb99c07775b..f3e17c97c2ab 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs
@@ -1,17 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics.Models
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
- using Microsoft.Azure.Management.DataLake.Analytics;
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
@@ -30,7 +28,7 @@ public partial class UpdateStorageAccountParameters
///
public UpdateStorageAccountParameters()
{
- CustomInit();
+ CustomInit();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Operations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Operations.cs
new file mode 100644
index 000000000000..2f2803fef569
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/Operations.cs
@@ -0,0 +1,227 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics
+{
+ using Microsoft.Rest;
+ using Microsoft.Rest.Azure;
+ using Models;
+ using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Linq;
+ using System.Net;
+ using System.Net.Http;
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ ///
+ /// Operations operations.
+ ///
+ internal partial class Operations : IServiceOperations, IOperations
+ {
+ ///
+ /// Initializes a new instance of the Operations class.
+ ///
+ ///
+ /// Reference to the service client.
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ internal Operations(DataLakeAnalyticsAccountManagementClient client)
+ {
+ if (client == null)
+ {
+ throw new System.ArgumentNullException("client");
+ }
+ Client = client;
+ }
+
+ ///
+ /// Gets a reference to the DataLakeAnalyticsAccountManagementClient
+ ///
+ public DataLakeAnalyticsAccountManagementClient Client { get; private set; }
+
+ ///
+ /// Lists all of the available Data Lake Analytics REST API operations.
+ ///
+ ///
+ /// Headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// A response object containing the response body and response headers.
+ ///
+ public async Task> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
+ // Tracing
+ bool _shouldTrace = ServiceClientTracing.IsEnabled;
+ string _invocationId = null;
+ if (_shouldTrace)
+ {
+ _invocationId = ServiceClientTracing.NextInvocationId.ToString();
+ Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("cancellationToken", cancellationToken);
+ ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters);
+ }
+ // Construct URL
+ var _baseUrl = Client.BaseUri.AbsoluteUri;
+ var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.DataLakeAnalytics/operations").ToString();
+ List _queryParameters = new List();
+ if (Client.ApiVersion != null)
+ {
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
+ }
+ if (_queryParameters.Count > 0)
+ {
+ _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
+ }
+ // Create HTTP transport objects
+ var _httpRequest = new HttpRequestMessage();
+ HttpResponseMessage _httpResponse = null;
+ _httpRequest.Method = new HttpMethod("GET");
+ _httpRequest.RequestUri = new System.Uri(_url);
+ // Set Headers
+ if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
+ {
+ _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
+ }
+ if (Client.AcceptLanguage != null)
+ {
+ if (_httpRequest.Headers.Contains("accept-language"))
+ {
+ _httpRequest.Headers.Remove("accept-language");
+ }
+ _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
+ }
+
+
+ if (customHeaders != null)
+ {
+ foreach(var _header in customHeaders)
+ {
+ if (_httpRequest.Headers.Contains(_header.Key))
+ {
+ _httpRequest.Headers.Remove(_header.Key);
+ }
+ _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
+ }
+ }
+
+ // Serialize Request
+ string _requestContent = null;
+ // Set Credentials
+ if (Client.Credentials != null)
+ {
+ cancellationToken.ThrowIfCancellationRequested();
+ await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ }
+ // Send Request
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
+ }
+ cancellationToken.ThrowIfCancellationRequested();
+ _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
+ }
+ HttpStatusCode _statusCode = _httpResponse.StatusCode;
+ cancellationToken.ThrowIfCancellationRequested();
+ string _responseContent = null;
+ if ((int)_statusCode != 200)
+ {
+ var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
+ try
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ if (_errorBody != null)
+ {
+ ex = new CloudException(_errorBody.Message);
+ ex.Body = _errorBody;
+ }
+ }
+ catch (JsonException)
+ {
+ // Ignore the exception
+ }
+ ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
+ ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Error(_invocationId, ex);
+ }
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw ex;
+ }
+ // Create Result
+ var _result = new AzureOperationResponse();
+ _result.Request = _httpRequest;
+ _result.Response = _httpResponse;
+ if (_httpResponse.Headers.Contains("x-ms-request-id"))
+ {
+ _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
+ }
+ // Deserialize Response
+ if ((int)_statusCode == 200)
+ {
+ _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
+ try
+ {
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ }
+ catch (JsonException ex)
+ {
+ _httpRequest.Dispose();
+ if (_httpResponse != null)
+ {
+ _httpResponse.Dispose();
+ }
+ throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
+ }
+ }
+ if (_shouldTrace)
+ {
+ ServiceClientTracing.Exit(_invocationId, _result);
+ }
+ return _result;
+ }
+
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/OperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/OperationsExtensions.cs
new file mode 100644
index 000000000000..9997c7ea7931
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/OperationsExtensions.cs
@@ -0,0 +1,53 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataLake.Analytics
+{
+ using Microsoft.Rest;
+ using Microsoft.Rest.Azure;
+ using Models;
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ ///
+ /// Extension methods for Operations.
+ ///
+ public static partial class OperationsExtensions
+ {
+ ///
+ /// Lists all of the available Data Lake Analytics REST API operations.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ public static OperationListResult List(this IOperations operations)
+ {
+ return operations.ListAsync().GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Lists all of the available Data Lake Analytics REST API operations.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false))
+ {
+ return _result.Body;
+ }
+ }
+
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperations.cs
index cd22bfa562d6..edfe19785344 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperationsExtensions.cs
index caa8c7b699b2..724eccd3941a 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperationsExtensions.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/PipelineOperationsExtensions.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperations.cs
index 1fa83fc7f2ba..f33f53c95f72 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperations.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperationsExtensions.cs
index cb960ab30e6f..5ee91050ecc8 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperationsExtensions.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/RecurrenceOperationsExtensions.cs
@@ -1,3 +1,4 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
@@ -5,12 +6,10 @@
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/SdkInfo_DataLakeAnalyticsAccountManagementClient.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/SdkInfo_DataLakeAnalyticsAccountManagementClient.cs
new file mode 100644
index 000000000000..1a4ccf66de2f
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/SdkInfo_DataLakeAnalyticsAccountManagementClient.cs
@@ -0,0 +1,24 @@
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+
+internal static partial class SdkInfo
+{
+ public static IEnumerable> ApiInfo_DataLakeAnalyticsAccountManagementClient
+ {
+ get
+ {
+ return new Tuple[]
+ {
+ new Tuple("DataLakeAnalytics", "Account", "2016-11-01"),
+ new Tuple("DataLakeAnalytics", "ComputePolicies", "2016-11-01"),
+ new Tuple("DataLakeAnalytics", "DataLakeStoreAccounts", "2016-11-01"),
+ new Tuple("DataLakeAnalytics", "FirewallRules", "2016-11-01"),
+ new Tuple("DataLakeAnalytics", "Locations", "2016-11-01"),
+ new Tuple("DataLakeAnalytics", "Operations", "2016-11-01"),
+ new Tuple("DataLakeAnalytics", "StorageAccounts", "2016-11-01"),
+ }.AsEnumerable();
+ }
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/SdkInfo_DataLakeAnalyticsCatalogManagementClient.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/SdkInfo_DataLakeAnalyticsCatalogManagementClient.cs
new file mode 100644
index 000000000000..87627433acaa
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/SdkInfo_DataLakeAnalyticsCatalogManagementClient.cs
@@ -0,0 +1,18 @@
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+
+internal static partial class SdkInfo
+{
+ public static IEnumerable> ApiInfo_DataLakeAnalyticsCatalogManagementClient
+ {
+ get
+ {
+ return new Tuple[]
+ {
+ new Tuple("DataLakeAnalyticsCatalogManagementClient", "Catalog", "2016-11-01"),
+ }.AsEnumerable();
+ }
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/SdkInfo_DataLakeAnalyticsJobManagementClient.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/SdkInfo_DataLakeAnalyticsJobManagementClient.cs
new file mode 100644
index 000000000000..e87cd5564cbe
--- /dev/null
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/SdkInfo_DataLakeAnalyticsJobManagementClient.cs
@@ -0,0 +1,20 @@
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+
+internal static partial class SdkInfo
+{
+ public static IEnumerable> ApiInfo_DataLakeAnalyticsJobManagementClient
+ {
+ get
+ {
+ return new Tuple[]
+ {
+ new Tuple("DataLakeAnalyticsJobManagementClient", "Job", "2017-09-01-preview"),
+ new Tuple("DataLakeAnalyticsJobManagementClient", "Pipeline", "2017-09-01-preview"),
+ new Tuple("DataLakeAnalyticsJobManagementClient", "Recurrence", "2017-09-01-preview"),
+ }.AsEnumerable();
+ }
+ }
+}
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs
index 8b22dcfbb0b0..ec335c61ac90 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Azure.OData;
@@ -1577,7 +1576,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie
}
// Construct URL
var _baseUrl = Client.BaseUri.AbsoluteUri;
- var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/StorageAccounts/").ToString();
+ var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataLakeAnalytics/accounts/{accountName}/StorageAccounts").ToString();
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{accountName}", System.Uri.EscapeDataString(accountName));
_url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs
index d071a49000f1..d6b8be9199c3 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs
@@ -1,16 +1,15 @@
+//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
-// Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
+// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
+//
namespace Microsoft.Azure.Management.DataLake.Analytics
{
- using Microsoft.Azure;
- using Microsoft.Azure.Management;
- using Microsoft.Azure.Management.DataLake;
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Microsoft.Rest.Azure.OData;
@@ -442,7 +441,7 @@ public static IPage ListSasTokens(this IStorageAccountsOperations
///
public static IPage ListByAccount(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?))
{
- return ((IStorageAccountsOperations)operations).ListByAccountAsync(resourceGroupName, accountName, odataQuery, select, count).GetAwaiter().GetResult();
+ return operations.ListByAccountAsync(resourceGroupName, accountName, odataQuery, select, count).GetAwaiter().GetResult();
}
///
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics.csproj b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics.csproj
index e2c7859d6750..30b65b5f7c6a 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics.csproj
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics.csproj
@@ -6,7 +6,7 @@
Microsoft.Azure.Management.DataLake.Analytics
Provides Data Lake Analytics account, job and catalog management capabilities for Microsoft Azure.
- 3.1.2-preview
+ 3.2.3-preview
Microsoft.Azure.Management.DataLake.Analytics
Microsoft Azure Data Lake Analytics management;DataLakeAnalytics;Data Lake Analytics;
See https://aka.ms/adladotnetsdkchangelog for release notes.
diff --git a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Properties/AssemblyInfo.cs b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Properties/AssemblyInfo.cs
index 18f3ec4c486a..b942248cb4f3 100644
--- a/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Properties/AssemblyInfo.cs
+++ b/src/SDKs/DataLake.Analytics/Management.DataLake.Analytics/Properties/AssemblyInfo.cs
@@ -8,7 +8,7 @@
[assembly: AssemblyDescription("Provides Microsoft Azure Data Lake Analytics management operations including account, catalog and job management.")]
[assembly: AssemblyVersion("3.0.0.0")]
-[assembly: AssemblyFileVersion("3.1.2.0")]
+[assembly: AssemblyFileVersion("3.2.3.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("Azure .NET SDK")]
diff --git a/src/SDKs/DataLake.Analytics/changelog.md b/src/SDKs/DataLake.Analytics/changelog.md
index 61a7f440a368..cc610cd795c9 100644
--- a/src/SDKs/DataLake.Analytics/changelog.md
+++ b/src/SDKs/DataLake.Analytics/changelog.md
@@ -1,9 +1,35 @@
## Microsoft.Azure.Management.DataLake.Analytics release notes
+
+### Changes in 3.2.3-preview
+
+**Breaking changes**
+
+- Changed the `ODataQuery` parameter type from `DataLakeAnalyticsAccount` to `DataLakeAnalyticsAccountBasic` for these APIs:
+ - Account_List
+ - Account_ListByResourceGroup
+- For `USqlJobProperties`, fixed the property name of `TotalPauseTime` to `TotalPausedTime`
+
+**Notes**
+
+- Added more properties to `JobStatisticsVertexStage`
+- Added two more states to `DataLakeAnalyticsAccountStatus` enum: `Undeleting` and `Canceled`
+- Added new Account APIs:
+ - Account_CheckNameAvailability
+ - Location_GetCapability
+ - Operation_List
+- Added new Catalog APIs:
+ - Catalog_ListAclsByDatabase
+ - Catalog_ListAcls
+ - Catalog_GrantAclToDatabase
+ - Catalog_RevokeAclFromDatabase
+ - Catalog_GrantAcl
+ - Catalog_RevokeAcl
+
### Changes in 3.1.2-preview
**Notes**
-- Add a read-only field, InnerError of type JobInnerError, to the JobInnerError class.
+- Added a read-only field, InnerError of type JobInnerError, to the JobInnerError class.
### Changes in 3.1.1-preview
@@ -57,7 +83,7 @@
- This is a hotfix release; therefore, the changes addressed here do not carry over to the versions above.
- Add support for a `basic` parameter on `ListTables` and `ListTablesByDatabase` which enables a user to retrieve a limited set of properties when listing their tables, resulting in a performance improvement when full metadata is not required. (this is addressed in version 3.1.0-preview)
- Add a read-only field, InnerError of type JobInnerError, to the JobInnerError class (this is addressed in version 3.1.2-preview)
-- Add two more states to `DataLakeAnalyticsAccountStatus` enum: `Undeleting` and `Canceled` (this will be addressed in an upcoming preview release)
+- Add two more states to `DataLakeAnalyticsAccountStatus` enum: `Undeleting` and `Canceled` (this is addressed in version 3.2.3-preview)
### Changes in 3.0.0
- All previous preview changes (below) are now stable and part of the official release
diff --git a/src/SDKs/_metadata/datalake-analytics_data-plane.txt b/src/SDKs/_metadata/datalake-analytics_data-plane.txt
new file mode 100644
index 000000000000..3fc2a797efcf
--- /dev/null
+++ b/src/SDKs/_metadata/datalake-analytics_data-plane.txt
@@ -0,0 +1,11 @@
+2018-01-04 18:59:53 UTC
+
+1) azure-rest-api-specs repository information
+GitHub user: Azure
+Branch: current
+Commit: db22f73d75fba57c9f1dcbd118bd1337ade842cf
+
+2) AutoRest information
+Requested version: latest
+Bootstrapper version: C:\Users\jooro\AppData\Roaming\npm `-- autorest@2.0.4215
+Latest installed version:
diff --git a/src/SDKs/_metadata/datalake-analytics_resource-manager.txt b/src/SDKs/_metadata/datalake-analytics_resource-manager.txt
new file mode 100644
index 000000000000..36ca1b484bb6
--- /dev/null
+++ b/src/SDKs/_metadata/datalake-analytics_resource-manager.txt
@@ -0,0 +1,11 @@
+2018-01-04 18:59:12 UTC
+
+1) azure-rest-api-specs repository information
+GitHub user: Azure
+Branch: current
+Commit: db22f73d75fba57c9f1dcbd118bd1337ade842cf
+
+2) AutoRest information
+Requested version: latest
+Bootstrapper version: C:\Users\jooro\AppData\Roaming\npm `-- autorest@2.0.4215
+Latest installed version: